/* Reset des couleurs pour le dark mode */
       
/* Correction des textes invisibles */
.theme-dark .text-black {
    color: #ffffff !important;
}

.theme-dark .text-gray-900 {
    color: #f9fafb !important;
}

.theme-dark .text-gray-800 {
    color: #f3f4f6 !important;
}

.theme-dark .text-gray-600 {
    color: #f3f4f6 !important;
}

/* Correction des backgrounds */
.theme-dark .bg-white {
    background-color: #1f2937 !important;
}

.theme-dark .bg-gray-50 {
    background-color: #374151 !important;
}

.theme-dark .bg-gray-100 {
    background-color: #f3f4f6 !important;
}

/* Correction des icônes */
.theme-dark .text-gray-400 {
    color: #9ca3af !important;
} 

/* Correction des boutons */
.theme-dark .btn-primary {
    background-color: #ce1212 !important;
    color: white !important;
}

/* Correction des cartes */
.theme-dark .card {
    background-color: #1f2937 !important;
    border-color: #374151 !important;
    color: #f9fafb !important;
}