#terminal {
    background-color: #000;
    color: #00FF00;
    font-family: monospace;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 1600px;
    margin: 20px auto;
}

#terminal-output {
    height: 300px;
    overflow-y: auto;
    padding: 5px;
    border-bottom: 1px solid #00FF00;
}

#terminal-input {
    display: flex;
    align-items: center;
}

#prompt {
    margin-right: 5px;
}

#command-input {
    background: none;
    border: none;
    color: #00FF00;
    outline: none;
    flex-grow: 1;
}

