body {
    background-color: #121212;
    color: #ccc;
    font-family: monospace;
    padding: 20px;
    margin: 0;
}

.terminal {
    max-width: 1000px;
    margin: auto;
    background-color: #1e1e1e;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    overflow: hidden;
}

.terminal-header {
    background-color: #333;
    padding: 10px;
    color: #76ff03;
}

#terminal-body {
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #121212;
    padding: 10px;
    font-family: monospace;
    color: #fff;
}

.line {
    margin-bottom: 5px;
}

.command {
    color: #76ff03;
}

input[type="text"] {
    width: 100%;
    border: none;
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px;
    outline: none;
    border-top: 1px solid #333;
}

.green {
    color: #76ff03;
}
.red {
    color: #ff1744;
}
.blue {
    color: #2979ff;
}
.grey {
    color: #a8a4a4;
}
.link {
    color: #2979ff;
    text-decoration: none;
}

/* Responsive mobile */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .terminal {
        max-width: 100%;
        border-radius: 0;
        height: 100vh;
        box-shadow: none;

    }

    #terminal-body {
        height: 75vh; /* header + input approx */
    }

    input[type="text"] {
        border-radius: 0;
            max-height: 40px;
                font-size: 10px; /* empêche le zoom sur iOS */
    }
}