/*@font-face {
    font-family: Roboto;
    src: url("fonts/Roboto-Regular.ttf");
}*/

html
{
    background-color: #272a2e;
    color: white;
    font-family: sans-serif;
    --body-font-size: 14pt;
    --footer-font-size: 12pt;
    line-height: 35px;
}

article
{
    position: relative;
    /* min-height: 100vh; */
    margin: auto;
    width: 90%;
    padding: 0px;
    text-align: left;
    line-height: 1.8;
    font-size: var(--body-font-size);
    overflow-y: auto;
}

menu {
    list-style-type: none;
}

.scroll-window {
    overflow-y: scroll;
    height: 90%;
    width: 100%;
    overflow-wrap: normal;
    border: 2px solid dimgrey;
    border-radius: 5px;
}

.wide-fucker {
    flex-grow: 100;
    padding: 0px 0px 0px 30px;
    height: 95%;
}

.stick-to-bottom {
    bottom: 0;
}

.unread-indicator {
    background-color: #ffffff;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    display: inline-block;
    padding: 3px 3px 0px 0px;
    margin-right: 4px;
    margin-bottom: 3px;
}

.read-indicator {
    background-color: darkgrey;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    display: inline-block;
    padding: 3px 3px 0px 0px;
    margin-right: 4px;
    margin-bottom: 3px;
}

.channel-unread {
    font-weight: bold;
    width: 100%;
    text-align: start;
}

.channel-read {
    color: darkgrey;
    font-weight: normal;
    font-style: italic;
}

.viewport {
    height: 85vh;
}

img {
    height: 10vh;
}

.flex-col
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 5px 5px 5px;
}

.flex-row
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 5px 5px 5px;
    height: 100%;
}

.row 
{
    display: flex;
    flex-direction: row;
    justify-content: start;

}

.col
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 5px 5px 5px 5px;
}

.msg-timestamp {
    font-size: 70%;
    color: darkgrey;
}

.msg-author {
    font-weight: bold;
}

.msg-content {
    padding-left: 10px;
}

a
{
    color: lightblue;
}

a:visited
{
    color: violet;
}

header
{
    background: #2a9b3f;
    background: linear-gradient(90deg, rgba(42, 155, 63, 1) 0%, rgba(87, 199, 149, 1) 80%, rgba(83, 237, 216, 1) 100%);
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2.5rem;
    text-shadow: 0px 0px 10px black;
}

.main
{
    padding-bottom: 2.5rem;
    margin: auto;
}

footer
{
    position: fixed;
    bottom: 0;
    width: 99.25%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: left;
    border-top: 5px solid darkgrey;
    font-size: var(--footer-font-size);
    background-color: #272a2e;
    height: 3vh;
} 

button 
{
    background-color: #1a1c1f;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: var(--body-font-size);
}

input, select
{
    background-color: #1a1c1f;
    border: none;
    color: white;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding: 4px 4px 4px 4px;
    border: 1px solid #aaaaaa;
}

button:active
{
    background-color: #18191c;
}


input[type=number] { 
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0; 
    width: 3rem;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none; 
      margin: 0; 
}
