/* Live Chat Styles */

/* Customer Chat Styles */
.chat-messages {
    max-height: calc(100vh - 300px);
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message.customer {
    justify-content: flex-end;
}

.message.agent {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
    word-wrap: break-word;
}

.message.customer .message-content {
    background-color: #007bff;
    color: white;
    border-bottom-right-radius: 5px;
}

.message.agent .message-content {
    background-color: white;
    border: 1px solid #dee2e6;
    border-bottom-left-radius: 5px;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 5px;
}

.message-sender {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Admin Chat Styles */
.conversation-item {
    transition: background-color 0.2s;
}

.conversation-item:hover {
    background-color: #f8f9fa;
}

.conversation-item.active {
    background-color: #e7f3ff;
    border-left: 3px solid #007bff;
}

/* Admin view - customer messages on left, agent on right */
#admin-chat-messages .message.customer {
    justify-content: flex-start;
}

#admin-chat-messages .message.agent {
    justify-content: flex-end;
}

#admin-chat-messages .message.customer .message-content {
    background-color: white;
    border: 1px solid #dee2e6;
    border-bottom-left-radius: 5px;
}

#admin-chat-messages .message.agent .message-content {
    background-color: #007bff;
    color: white;
    border-bottom-right-radius: 5px;
}

