body {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}
.terminal {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: monospace;
}
.command-input {
    background-color: transparent;
    border: none;
    color: #ffffff;
    width: 100%;
    font-family: monospace;
    font-size: 16px;
    outline: none;
}
.output {
    margin-top: 10px;
    color: #a0a0a0;
}
.command-history {
    margin-top: 20px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
}
.success {
    color: #4CAF50;
}
.error {
    color: #f44336;
}