/* Styles spécifiques pour les éditeurs de code */
.code-editor {
    font-family: 'Courier New', Courier, monospace;
    resize: none; 
    white-space: pre;
    overflow-wrap: normal;
    overflow-x: auto;
    line-height: 1.5;
}

/* Scrollbars personnalisées */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1e1e1e; 
}
::-webkit-scrollbar-thumb {
    background: #4a5568; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #718096; 
}

/* Style pour l'onglet actif */
.tab-active {
    background-color: #1e1e1e;
    border-bottom: 2px solid;
    color: white;
}
.tab-inactive {
    background-color: #2d3748;
    color: #a0aec0;
}
.tab-inactive:hover {
    background-color: #4a5568;
    color: white;
}