body {
    background-color: #0b0f0b;
    color: #00ff66;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

.terminal-window {
    background-color: #000000;
    border: 1px solid #00ff66;
    border-radius: 5px;
    max-width: 800px;
    margin: 50px auto;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.terminal-header {
    border-bottom: 1px solid #00ff66;
    padding-bottom: 5px;
    font-weight: bold;
    margin-bottom: 10px;
}

.terminal-output {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.terminal-input-line {
    display: flex;
    align-items: center;
}

.terminal-input-line span {
    margin-right: 8px;
}

#commandInput {
    background: transparent;
    border: none;
    color: #00ff66;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    outline: none;
    flex-grow: 1;
}