body {
    background: #020617;
    color: #00f2ff;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.console { 
    display: inline-block;
    border: 2px solid #00f2ff;
    padding: 20px; 
    background: #0f172a;
    border-radius: 10px;
    box-shadow: 0 0 20px #00f2ff44;
    text-align: center;
}

/* Encadré pour le nom du fichier */
.file-name {
    display: inline-block;
    border: 2px solid #00f2ff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    color: #00f2ff;
    background: #0f172a;
    box-shadow: 0 0 10px #00f2ff44;
}

/* Animation scan-line */
.scan-line { 
    position: absolute; 
    width: 100%; 
    height: 2px; 
    background: rgba(0,242,255,0.5); 
    animation: scan 4s infinite linear; 
}

@keyframes scan { 
    0% { top: 0; } 
    100% { top: 100%; } 
}

/* Sidebar gauche */
#sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: #0f172a;
    padding: 10px;
    border-right: 2px solid #00f2ff;
    overflow-y: auto;
}

/* Items dans le sidebar */
.file-item {
    color: #00f2ff;
    padding: 5px 0;
    cursor: pointer;
}

.file-item:hover {
    text-decoration: underline;
}

/* Optionnel : décaler le contenu principal pour laisser la sidebar */
.console {
    margin-left: 160px; /* largeur du sidebar + marge */
}