﻿*,
*::after,
*::before{
    box-sizing:border-box;
    font-family: "Inter", sans-serif;
}
body, html{
    margin: 0;
    padding: 0;
    margin-top: 5px;
    overscroll-behavior-y: none;
}

.container {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-gap: 10px;
    justify-content: center;
}
.status {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content:center;
    align-items: center;
}
.status p{
    margin: 0px;
    padding: 0px;
}

input.token {
    border: 0;
    outline: none;
    padding: 10px;
    background: whitesmoke;
    height: 30px;
    border-radius: 6px;
    color: #212121;
}
input.token[disabled]{
    background-color: #e0e0e0;
}

button{
    height: 30px;
    outline: none;
    border: 0;
    border-radius: 6px;
}
button.connect[disabled],
button.disconnect[disabled]{
    background-color: #9e9e9e;
}
button.connect{
    background-color: #43a047;
    color: white;
}
button.disconnect {
    background-color: #e53935;
    color: white;
}

span#status.red {
    color: #e53935;
    font-weight: 600;
}
span#status.green {
    color: #43a047;
    font-weight: 600;
}
span#status.yellow {
    color: #fbc02d;
    font-weight: 600;
}


.screen{
    border-radius: 6px;
}
    .screen img {
        width: calc(100% - 350px);
        display: inline-block;
        margin: auto;
    }


.chat {
/*    width: 250px;*/
    display: grid;
    grid-template-rows: 100% auto;
    gap: 10px;
    width: 100%;
}
.history{
    border: 1px solid #9e9e9e;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    
}
.history p{
    align-self: center;
    text-align: center;
    margin: 0px;
    font-size: 12px;
    width: 100%;
    border-bottom: 1px solid #9e9e9e;
}
.history-list span{
    font-size: 12px;
}

.toolbar {
    display: inline-block;
    margin: auto;
}

    .toolbar input {
        border: 1px solid #9e9e9e;
        outline: none;
        padding: 10px;
        background: whitesmoke;
        height: 30px;
        border-radius: 6px;
        color: #212121;
    }
    .toolbar button {
        border: 1px solid #9e9e9e;
    }