#consoleDisplay {
    width: 100%;
    min-height: 50vh;
    max-height: 50vh;
    overflow: auto;
    font-family: monospace;
    overflow-y: scroll;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #2F2F2F;
    border-top: 1px solid #3F3F3F;
    border-right: 1px solid #3F3F3F;
    border-left: 1px solid #3F3F3F;
    border-radius: 4px 4px 0 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    z-index: 9;

    /* scroll bar */
    scrollbar-width: thin;
    scrollbar-color: #3F3F3F #2F2F2F;
}

#commandInput {
    width: 100%;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
    background-color: #2F2F2F;
    border-right: 1px solid #3F3F3F;
    border-left: 1px solid #3F3F3F;
    border-bottom: 1px solid #3F3F3F;
    border-radius: 0 0 4px 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    z-index: 10;
}

.line {
    padding: 4px;
    word-wrap: break-word;
}