/* frontend/src/Chat.css */

.chat-container {
    max-width: 600px;
    margin: 0 auto;
}

.chat-box {
    background-color: #f8f9fa;
    padding: 15px;
    height: 400px;
    overflow-y: scroll;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.message {
    margin-bottom: 15px;
}

.message.user {
    text-align: right;
}

.message.bot {
    text-align: left;
}

.message-content {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
}

.message.user .message-content {
    background-color: #d1e7dd;
    color: #0f5132;
}

.message.bot .message-content {
    background-color: #f8d7da;
    color: #842029;
}
