#chat-container {
    max-height: 400px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    overflow-y: scroll;
    margin-bottom: 20px;
    /* Add some margin at the bottom */
}

#chat-title {
    font-size: 24px;
    margin-bottom: 10px;
}

#chat-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.message-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-bubble {
    padding: 10px;
    border-radius: 8px;
    max-width: 70%;
}

.user-bubble {
    background-color: #3498db;
    /* Blue color for user messages */
    color: #fff;
    /* White text for better contrast */
}

.bot-bubble {
    background-color: #2ecc71;
    /* Green color for bot messages */
    color: #fff;
    /* White text for better contrast */
}

.icon {
    margin-right: 5px;
}

#chat-form-container {
    margin-top: 20px;
}

#user-input {
    resize: none;
    width: 70%;
}

.centered-textarea {
    display: block;
    margin: auto;
}