body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1e1e1e;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 900px;
    border: 1px solid #444;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.console {
    display: flex;
    flex-direction: column;
}

#output {
    font-size: 16px;
    white-space: pre-wrap;
    overflow-y: auto;
    height: 400px;
    margin-bottom: 10px;
    color: #8e8e8e;
}

.command-input {
    background: #333;
    border: 1px solid #555;
    padding: 10px;
    color: white;
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.command-input:focus {
    border-color: #888;
}
