/* =========================================================
   STYLE LISTE ORGANISATIONS (CORRIGÉ CONTRASTE)
   ========================================================= */

/* --- 1. MODE SOMBRE (Défaut) --- */

#template-organisation .event-list-row {
    background-color: var(--bg-card);
    border-color: var(--border-color) !important;
    transition: background-color 0.2s ease;
}

#template-organisation .event-list-row:hover {
    background-color: var(--bg-card-hover);
}

/* Logo */
#template-organisation .event-list-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 4px;
    padding: 2px;
}

/* Titre (Blanc par défaut) */
#template-organisation .event-row-title a {
    color: var(--text-title);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    transition: color 0.2s;
}
/* Titre devient Or au survol */
#template-organisation .event-list-row:hover .event-row-title a {
    color: #edc13b;
}

/* CORRECTION 1 : Infos plus claires sur fond sombre */
#template-organisation .event-row-meta {
    color: #cccccc !important; /* Gris clair forcé pour être visible */
    font-size: 0.9rem;
}

/* Compte à rebours (Or sur fond sombre = OK) */
#template-organisation .badge-countdown {
    color: #edc13b;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

#template-organisation .badge-autre-evenement-warning {color:#000 !important;background:#98e779;padding:15px 15px !important;border-radius:2px;font-size:14px;font-family: 'Oswald', sans-serif;letter-spacing:1px;text-transform: uppercase;}
#template-organisation .badge-autre-evenement-next {color:#eee !important;background:#343A40;padding:15px 15px !important;border-radius:2px;font-size:14px;font-family: 'Oswald', sans-serif;letter-spacing:1px;text-transform: uppercase;}
#template-organisation .badge-autre-evenement-finish {color:#666 !important;background:#ccc;padding:15px 15px !important;border-radius:2px;font-size:14px;font-family: 'Oswald', sans-serif;letter-spacing:1px;text-transform: uppercase;}
#template-organisation .badge-autre-evenement-now {color:#666 !important;background:#FCE599;padding:15px 15px !important;border-radius:2px;font-size:14px;font-family: 'Oswald', sans-serif;letter-spacing:1px;text-transform: uppercase;}



/* --- 2. MODE CLAIR (LIGHT MODE) --- */
body.light-mode #template-organisation .event-list-logo {background-color: transparent;}
/* Fond blanc */
body.light-mode #template-organisation .event-list-row {
    background-color: #ffffff;
    border-color: #eee !important;
}
body.light-mode #template-organisation .event-list-row:hover {
    background-color: #f9f9f9;
}

/* Titre Noir */
body.light-mode #template-organisation .event-row-title a {
    color: #212529;
}
/* Titre reste noir ou devient or au survol (au choix, ici Or pour le style) */
body.light-mode #template-organisation .event-list-row:hover .event-row-title a {
    color: #edc13b;
}

/* Infos en gris moyen sur fond blanc */
body.light-mode #template-organisation .event-row-meta {
    color: #666 !important;
}

/* CORRECTION 2 : Compte à rebours NOIR sur fond BLANC */
/* L'or était illisible, on passe en noir pour le contraste */
body.light-mode #template-organisation .badge-countdown {
    color: #000000 !important; 
}