@font-face
{
    font-family: 'Wumpus Mono Pro Web';
    font-size: 11pt;
    src: url( './fonts/WumpusMonoProVF.woff2' ) format( 'woff2' ),
         url( './fonts/WumpusMonoProVF.woff' )  format( 'woff' ),
         url( './fonts/WumpusMonoProVF.ttf' )   format( 'ttf' );
}

::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    position: absolute;
    right: 0;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #FFF;
    font-family: 'Wumpus Mono Pro Web', monospace;
    font-size: 11pt;
    font-weight: 300;
    user-select: text;
    cursor: text;
}

#terminal-container {
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 10px;
    overflow-y: auto;
}

.terminal-line {
    user-select: text; /* Allow text selection */
    white-space: pre-wrap;
    display: flex;
    width: 100%;
  }

.terminal-line span {
    white-space: pre;
}

#terminal-input {
    flex: 1;
    border: none;
    background: none;
    color: #FFF;
    outline: none;
    font-family: 'Wumpus Mono Pro Web', monospace;
    font-size: 11pt;
    font-weight: 300;
}

#terminal-input::selection {
    background: white;
    color: black;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.inverse {
    background-color: white;
    color: black;
}

.red {
    color: red;
}

.green {
    color: green;
}

.yellow {
    color: yellow;
}

.blue {
    color: blue;
}

.magenta {
    color: magenta;
}

.cyan {
    color: cyan;
}

.white {
    color: white;
}
