﻿.chat_container {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 5px;
}

.chat_window {
    height: 400px;
    width: 100%;
    overflow: auto;
    background-color: white;
    border: 2px solid #E6ECEF;
}

.message_container {
    display: flex;
    flex-direction: column;
}

.left {
    justify-items: left;
    align-items: flex-start;
}

.right {
    justify-items: right;
    align-items: flex-end;
}

.msg_time {
    justify-content: center;
    font-size: 0.65rem;
}

.avatar_message {
    width: 75%;
    font-size: 0.80rem;
    border-radius: 10px;
}

.isme {
    flex-direction: row;
    align-content: flex-start;
    background-color: rgba(0, 240, 255, 0.24);
    border: 2px solid rgba(0, 201, 255, 0.24);
}

.isother {
    flex-direction: row-reverse;
    align-content: flex-end;
    background-color: rgba(255, 156, 0, 0.30);
    border: 2px solid rgba(255, 117, 0, 0.30);
}

.avatar {
    height: 40px;
    width: 40px;
    float: left;
    margin-right: 5px;
    border-radius: 50%;
}

.message {
    flex-direction: column;
}

#expand_chat {
    display: block;
    width: 20%;
}

#collapse_chat {
    display: none;
}

#tabs_with_chat {
    width: 75%;
}

#tabs_without_chat {
    width: 100%;
}

:root {
    box-sizing: border-box;
    font-family: system, sans-serif;
}

body {
    margin: 0;
    padding: 2rem 0;
}

.chat_row {
    display: flex;
    flex-direction: row;
}

#send_btn {
    height: 100%;
    background-color: #ff6d41;
    color: white;
    border: 2px solid #E6ECEF;
    border-radius: 3px;
}

.div_textarea {
    max-height: 70px;
    width: 100%;
}

#textarea {
    display: block;
    font: inherit;
    height: 100%;
    width: 100%;
    padding: .8rem 1rem;
    border: 2px solid #E6ECEF;
    border-radius: 3px;
    background-color: white;
    overflow: auto;
}

.menu {
    position: absolute;
    display: none;
    background-color: #f3f3f3;
    max-height: 300px;
    width: 200px;
    overflow: auto;
    left: initial !important;
    top: initial !important;
    bottom: 13% !important;
    border: 2px solid #E6ECEF;
    border-radius: 5px;
}

.menu-item {
    cursor: default;
    padding: 1rem;
}

.menu-item.selected {
    background-color: slateGray;
    color: white;
}

.menu-item:hover:not(.selected) {
    background-color: #fafafa;
}

#HCMID {
    display: none;
}

.newspan {
    white-space: pre;
}