/* ============================================================
   THE EVENTS CALENDAR - VUE MENSUELLE
   Couleur des jours selon les catégories d'événements
   Les catégories sont détectées à partir des classes natives
   générées par The Events Calendar.
   L'ordre des règles définit la priorité : Atelier - Vie associative - Prestation - Répétition
   ============================================================ */

/* Atelier */
.tribe-events-view--month.tribe-common--breakpoint-medium
.tribe-events-calendar-month__day:has(.tribe_events_cat-atelier) {
    background-color: #e5d3f2 !important;
}


/* Réunion / CA / vie associative */
.tribe-events-view--month.tribe-common--breakpoint-medium
.tribe-events-calendar-month__day:has(.tribe_events_cat-vie-associative) {
    background-color: #b2d7f5 !important;
}


/* Prestation */
.tribe-events-view--month.tribe-common--breakpoint-medium
.tribe-events-calendar-month__day:has(.tribe_events_cat-prestation) {
    background-color: #f7b17b !important;
}


/* Répétition - priorité la plus forte */
.tribe-events-view--month.tribe-common--breakpoint-medium
.tribe-events-calendar-month__day:has(.tribe_events_cat-repetition) {
    background-color: #f8e372 !important;
}


/* ============================================================
   THE EVENTS CALENDAR - VUE MENSUELLE
   Mise en page compacte sur ordinateur
   ============================================================ */

@media (min-width: 1024px) {

    /* Largeur et centrage du calendrier */
    .tribe-events-view--month .tribe-events-l-container {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Réduction de l'espace avant la navigation du calendrier */
    section.tribe-common-l-container.tribe-events-l-container {
        padding-top: 20px !important;
    }

    /* Réduction de la hauteur minimale des cases */
    .tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-month__day {
        min-height: 80px !important;
    }

}

/* ============================================================
   THE EVENTS CALENDAR - VUE MENSUELLE MOBILE
   Couleur des points selon la catégorie
   Priorité : Atelier - Vie associative - Prestation - Répétition
   ============================================================ */

/* Atelier */
.tribe-events-calendar-month__day:has(.tribe_events_cat-atelier)
.tribe-events-calendar-month__mobile-events-icon--event {
    background-color: #e5d3f2 !important;
}

/* Réunion / CA / vie associative */
.tribe-events-calendar-month__day:has(.tribe_events_cat-vie-associative)
.tribe-events-calendar-month__mobile-events-icon--event {
    background-color: #b2d7f5 !important;
}

/* Prestation */
.tribe-events-calendar-month__day:has(.tribe_events_cat-prestation)
.tribe-events-calendar-month__mobile-events-icon--event {
    background-color: #f7b17b !important;
}

/* Répétition - priorité la plus forte */
.tribe-events-calendar-month__day:has(.tribe_events_cat-repetition)
.tribe-events-calendar-month__mobile-events-icon--event {
    background-color: #f8e372 !important;
}

/* ============================================================
   THE EVENTS CALENDAR - VUE LISTE
   Couleur appliquée uniquement au bloc de détails
   ============================================================ */

/* Répétition */
.tribe-events-view--list
.tribe-events-calendar-list__event.tribe_events_cat-repetition
.tribe-events-calendar-list__event-details {
    background-color: #f8e372 !important;
}

/* Atelier */
.tribe-events-view--list
.tribe-events-calendar-list__event.tribe_events_cat-atelier
.tribe-events-calendar-list__event-details {
    background-color: #e5d3f2 !important;
}

/* Prestation */
.tribe-events-view--list
.tribe-events-calendar-list__event.tribe_events_cat-prestation
.tribe-events-calendar-list__event-details {
    background-color: #f7b17b !important;
}

/* Réunion / CA / vie associative */
.tribe-events-view--list
.tribe-events-calendar-list__event.tribe_events_cat-vie-associative
.tribe-events-calendar-list__event-details {
    background-color: #b2d7f5 !important;
}


/* ============================================================
   THE EVENTS CALENDAR - VUE LISTE MOBILE
   Petite séparation entre la date et le bloc coloré
   ============================================================ */

@media (max-width: 767px) {

    .tribe-events-view--list
    .tribe-events-calendar-list__event-details {
        margin-left: 8px !important;
        width: auto !important;
    }

}

/* Masquer l'extrait dans la vue Liste */
.tribe-events-view--list
.tribe-events-calendar-list__event-details
.tribe-events-calendar-list__event-description p {
    display: none;
}

/* Masquer le tarif natif de The Events Calendar dans la vue Liste */
.tribe-events-view--list
.tribe-events-calendar-list__event-cost {
    display: none;
}
     
/* ============================================================
   THE EVENTS CALENDAR - VUE LISTE
   État personnel de participation aux prestations
   ============================================================ */

.lbdt-agenda-pastille {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border-radius: 50%;
    box-sizing: border-box;
    vertical-align: middle;
}

/* Je viens */
.lbdt-agenda-pastille-present {
    background-color: #28a745;
}

/* Je ne sais pas encore */
.lbdt-agenda-pastille-incertain {
    background-color: #808080;
}

/* Je ne peux pas venir */
.lbdt-agenda-pastille-absent {
    background-color: #dc3545;
}

/* Pas encore répondu */
.lbdt-agenda-pastille-sans-reponse {
    background-color: #ffffff;
    border: 2px solid #E86012;
}
