#terminal {
    background: #0a0a0f;
    border: 2px solid #333333;
    border-radius: 5px;
    width: 100%;
    height: 600px;
    max-height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#terminal_form { /* contains the editable text area, username display, and send button */
    display: flex;
    flex-direction: row;
    margin-top: auto;
    margin-bottom: 5px;
}

.terminal {
    color: white;
    font-family: 'Menlo', 'Courier New', Courier, monospace;
    font-size: 0.9em;
    padding: 5px;
}

#terminal_display { /* message display area */
    overflow: auto;
}

#terminal_input { /* editable text area */
    flex-grow: 1;
    white-space: pre-wrap;
    word-wrap: break-word;
    outline: none;
}

#send_button {
    align-self: flex-end;
    background: none;
    border: none;
    color: #492F7A;
    font-size: 1.5em;
    text-align: center;
    width: 30px;
}
#send_button:hover { color: white; }

.system_msg { color: #492F7A; }
.time { color: #999999; }
.username { font-weight: bold; }

.terminal p { font-family: 'Menlo', 'Courier New', Courier, monospace; }
.terminal a { color: #999999; }
.terminal a:hover { color: white; }