body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin: 0;
}

#terminal {
    padding: 10px;
    height: 100vh;
    box-sizing: border-box;
}

#output {
    white-space: pre-wrap;
}

.line {
    display: flex;
}

.prompt {
    white-space: nowrap;
}

#input {
    background-color: transparent;
    border: none;
    color: #0f0;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    width: 100%;
    caret-color: #0f0;
}

#input:focus {
    outline: none;
}

.ascii-art {
    color: #32CD32; /* LimeGreen */
    font-size: 14px;
}

.welcome-message {
    font-weight: bold;
}
