/* styles.css */
body {
    background-color: #121212;
    font-family: Consolas, monospace;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#terminal {
    width: 80%;
    max-width: 800px;
    min-height: 400px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}

#output {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 10px;
}

#command-input {
    background: none;
    border: none;
    width: 100%;
    color: white;
    font-size: 18px;
    outline: none;
}
