#consistup-chat-container {
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

#consistup-chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.chat-message {
    margin-bottom: 12px;
    display: flex;
}

.chat-message p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 6px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    justify-content: flex-end;
}

.user-message p {
    background: #007bff;
    color: white;
}

.bot-message {
    justify-content: flex-start;
}

.bot-message p {
    background: #e9ecef;
    color: #333;
}

#consistup-chat-input-area {
    display: flex;
    padding: 12px;
    gap: 8px;
}

#consistup-chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#consistup-chat-send {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#consistup-chat-send:hover {
    background: #0056b3;
}

#consistup-chat-send:disabled {
    background: #ccc;
    cursor: not-allowed;
}