/* Chat */
.chat-container {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-container .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-container .chat-messages .message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.chat-container .chat-messages .message.sent {
    align-self: flex-end;
}

.chat-container .chat-messages .message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}


.chat-container .chat-messages .message.received .message-bubble {
    background: white;
    border-bottom-left-radius: 4px;
}

.chat-container .chat-messages .message.sent .message-bubble {
    background: #000000;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-container .chat-messages .message-time {
    font-size: 12px;
    color: #9ca3af;
    padding: 0 4px;
}


.chat-container .chat-messages  .message.sent .message-time {
    text-align: right;
}


.chat-container  .chat-input {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}