html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: black;
    color: #00ff88;
    font-family: monospace;
}

#terminal {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 10px;
    box-sizing: border-box;
    cursor: text;
}

#output {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
}

#output::-webkit-scrollbar {
    display: none;
}

#output > div {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.prompt {
    margin-right: 5px;
}

.input-line {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin: 0;
    padding: 0;
}

input {
    background: transparent;
    border: none;
    outline: none;
    color: #00ff88;
    flex: 1;
    font-family: inherit;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}
