html{
    background-color: gray;
    color: white;
}
header{
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    background-color: black;
    height: 50px;
    text-align: left;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.output{
    position: fixed;
    top: 50px;
    left: 0%;
    right: 0%;
    bottom: 20%;
    background-color: #333;
    overflow-y: scroll;
    padding: 20px;
}
.output .rowuser{
    margin: 10px;
    padding: 10px;
    background-color: #444;
    border-radius: 10px;
    text-align: right;
}
.output .rowbot{
    margin: 10px;
    padding: 10px;
    background-color: #555;
    border-radius: 10px;
    text-align: left;
}
.input{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: black;
    color: white;
    height: 20vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.input input{
    width: 50%;
    height: fit-content;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    background-color: #333;
    color: white;
}
.input #send{
    background-color: #333;
    color: white;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    height: fit-content;
    margin-right: 25px;
}
.input .space{
    width: 73px;
}
table, table th, table td{
    border-collapse: collapse;
    border: 1px solid black;
    padding: 5px;
}
table tr{
    background-color: #555;
}
table tr:nth-child(even){
    background-color: #333;
}
table .header{
    background-color: #111;
}
.mode{
    background-color: #111;
    color: white;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 16px;
    border-radius: 10px;
}
.active{
    background-color: #444;
    scale: 1.1;
}