@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body { 
    background-color: #0f172a; 
    color: #f3f4f6; 
    font-family: 'Inter', sans-serif; 
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Style pour les petits selects des filtres du tableau */
.th-select { 
    background-color: #1e293b; 
    color: #cbd5e1; 
    border: 1px solid #475569; 
    border-radius: 4px; 
    padding: 2px 4px; 
    font-size: 10px; 
    outline: none; 
    cursor: pointer; 
}

.th-select:focus { 
    border-color: #3b82f6; 
}