body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    margin: 0;
    padding: 10px;
}

#terminal {
    width: 100%;
    height: 95vh;
    overflow-y: scroll;
    box-sizing: border-box;
}

#output {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.prompt-line {
    display: flex;
    align-items: center;
}

.prompt {
    margin-right: 8px;
    color: #00ff00;
}

#commandInput {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #f0f0f0;
    font-family: inherit;
    font-size: inherit;
    outline: none;
}
