html {
    background-color: black;
    color: white;
    height: 100%;
}

body {
    height: 100%;
}

.interFaceContainer {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.chatContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 80%;
}

.chat {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 1%;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    height: 80%;
}

.userList {
    width: 20%;
}

.terminalLine {
    display: flex;
    align-items: flex-start;
}

.prompt {
    flex:none;
    color:#ffb86c;
}

.input{
    border: none;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    resize: none; /*remove the resize handle on the bottom right*/

    color: white;
    background-color: black;
    background: transparent;
    color: inherit;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    flex:1;
    min-width:0;
    outline:none;
    background:transparent;
    color:inherit;
    white-space:pre-wrap;
    word-break:break-word;

}

#chat {
    height: 80%;
}

.chat {
    height: 80%;
}

#usernameInput {
    color: white;
    background-color: black;
    border: none;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    font-family: monospace;
}

html {
    height: 100%;
    font-family: monospace;
}

@media (max-width: 768px) {

    .interFaceContainer {
        flex-direction: column;
    }

    .chatContainer {
        width: 100%;
    }

    .userList {
        width: 100%;
        max-height: 20vh;
        border-top: 1px solid #333;
        font-size: 0.9em;
    }

    .terminalLine {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .chat {
        font-size: 0.95em;
    }
}
