﻿html, body, .container-fluid, .row, .forms, .chatbotCol {
    height: 100%;
}

html, body, .chatbotRow {
    margin: 0;
}

body {
    background: #fff;
}

h3 {
    position: sticky;
    top: 0;
}

.chat-messages {
    height: calc(100% - 10rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 1rem;
}

.chatbotHeaderContainer {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.messageForm {
    margin-block: 1rem;
    margin-top: 0;
}

/* Message bubbles */
.message {
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 80%;
    font-size: 14px;
    color: black;
}

    .message.assistant {
        background: #3d89be;
        color: #fff;
        align-self: flex-start;
        display: flex;
        gap: .5rem;
    }

    .message.assistant img {
        background: #fff;
        padding: .1rem;
        border-radius: 100%;
    }

    .message.user {
        background: #399356;
        color: white;
        align-self: flex-end;
    }