html,
body {
    transition: background-color 0.8s, color 0.8s;
    cursor: default;
/*    font-family: monospace;*/
    font-family: 'Press Start 2P';
    font-size: 8px;
    margin: 0;
    padding: 0;
    zoom: 100%;
    width: 100%;
    height: 100%;
}

input .container {
    margin-left: 10px;
}

input,
.prompt {
    user-select: none;
}

.command {
    white-space: pre-wrap;
}

.first {
    font-style: italic;
}

.log {
    margin: 10px;
    margin-bottom: 10px;
    white-space: pre-wrap;
}

hr {
    height: 1px;
    border: none;
}

#console {
    overflow-y: auto;
    word-wrap: break-word;
}

::-webkit-scrollbar {
    width: 10px;
}

input[type="text"] {
    cursor: default;
    background-color: transparent;
    border: none;
    /*font-family: monospace;*/
    font-family: 'Press Start 2P';
    font-size: inherit;
    width: 94vw;
    outline: none;
}

.error {
    transition: background-color 0.9s, color 0.9s;
    border-radius: 4px;
    height: 100%;
}

a {
    transition: background-color 0.3s, color 0.3s;
    text-decoration-line: none;
    border-bottom: 1px dotted;
}

.insert-cmd {
    cursor: help;
}

#context-menu {
    border: 1px solid;
    position: fixed;
    z-index: 10000;
    width: 150px;
    border-radius: 5px;
    transform: scale(0);
    transform-origin: top left;
    user-select: none;
}

#context-menu.visible {
    transform: scale(1);
    transition: transform 200ms ease-in-out;
}

#context-menu .item {
    transition: background-color 0.3s, color 0.3s;
    padding: 8px 10px;
    font-size: 15px;
    cursor: pointer;
    border-radius: inherit;
}

.winbox {
    background: linear-gradient(90deg, #000000, #05ff97);
    border-radius: 12px 12px 0 0;
    box-shadow: none;
}

.winbox.min {
    border-radius: 0;
}

.wb-body {
    /* set the width of window border via margin: */
    margin: 4px;
    color: #fff;
    background: #131820;
}

.wb-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}
