body {
    background-color: #000;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
}

#terminal-wrapper {
    width: 80vw;
    height: 80vh;
    border: 1px solid #118111;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: #00ff00;
    border-radius: 4px;
}

#terminal {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    white-space: pre-wrap;
}

#input-line {
    display: flex;
    border-top: 1px solid #118111;
    padding: 10px;
}

#prompt {
    margin-right: 5px;
    margin-top: 3px;
}

#command-input {
    background: none;
    border: none;
    color: #00ff00;
    outline: none;
    flex: 1;
    font-family: monospace;
    font-size: 16px;
}

/* 📱 Mobile : plein écran */
@media (max-width: 768px) {
    #terminal-wrapper {
        width: 100vw;
        height: 100vh;
        border: none;
    }
}