﻿.chat-input-container {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.chat-input-text {
    width: 100%;
    border-radius: 10px;
}

.chat-content-row {
    display:flex;
}

.chat-content-loading {
    height: 30px;
    left: 37%;
    position: relative;
}

.chat-header-container {
    display: flex;
    align-items: center;
}

.chat-header-icon-container {
    padding-right: 30px;
}

.chat-header-icon{
    font-size: 16px;
}

.chat-header-text-container {
    flex-grow: 1;
    padding: 20px;
}

.chat-content-row-user {
    flex-direction: row-reverse;
}

.chat-content-textbox {
    border-radius: 15px;
    background-color: aliceblue;
    padding: 15px;
    width: 75%;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.chat-content-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.chat-content-textbox-user {
    border-radius: 15px;
    background-color: white;
    float: right;
    padding: 15px;
    width: 75%;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}