﻿.chat-messages {
    border: 1px solid #ccc;
    padding: 15px;
    overflow-y: auto;
    border-radius: 8px;
    flex: 1 1 auto;
    min-height: 350px;
}

.chatbot-container {
    max-height: 600px;
    height: 600px;
}

.chatbot-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}

.user-message, .bot-message, .system-message {
    word-wrap: break-word;
    white-space: pre-wrap;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    max-width: 80%;
    clear: both;
}

.user-message {
    background-color: #d0ebff;
    color: #0c5460;
    margin-left: auto;
}

.bot-message {
    background-color: #e2e3e5;
    color: #383d41;
    margin-right: auto;
}

.input-messages {
    border: 1px solid #ccc;
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    height: 40px;
    border-radius: 8px;
}

    .input-messages textarea {
        resize: none;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 40px;
        max-height: 200px;
    }

.system-message {
    background-color: #ea9768;
    color: black;
    margin-right: auto;
}

.login-button {
    background: var(--clr-blue);
    border: none;
    border-radius: 5px;
    color: var(--clr-white);
    cursor: pointer;
    margin-bottom: 16px;
    padding: 8px 16px;
    width: fit-content;
}
