html,
body {
    overflow-y: hidden;
    height: 100%;
}


/* General */

:root {
    --c-primary: #66FCF2;
    --c-secondary: #46A29F;
    --c-light: #6c757d;
    --c-medium: #3b4044;
    --c-dark: #1F2834;
    --c-black: #0B0C0F;
}

::selection {
    background-color: var(--c-primary);
    color: var(--c-black);
}

::-webkit-scrollbar-track {
    background-color: var(--c-black));
    border-left: 0;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--c-black);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: var(--c-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    height: 100vh;
}

section#chat {
    display: flex;
    flex-direction: column;
}

#chat_history {
    overflow-y: auto;
    flex-direction: column;
}

#chat_msg_container {
    width: fit-content;
    height: fit-content;
}

#chat_msg_container .datetime {
    display: none;
}

#chat_msg_container:hover>.datetime {
    display: inline-block;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none!important;
}

#userlistmobile {
    transform: translate3d(0px, 30px, 0px)!important;
}

.form-control:focus,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none!important;
}

div#chat_inputbar {
    z-index: 1000;
}