/* Augmenter la hauteur du dropdown Choices.js */
.choices__list--dropdown {
    max-height: 500px !important;
    overflow: scroll;
    /* Au lieu de la hauteur par défaut (environ 200px) */
}

/* Ou pour cibler spécifiquement le select des équipiers */
#workerSelect + .choices .choices__list--dropdown {
    max-height: 500px !important;
    overflow: scroll;
}

/* Centrer le texte "Journée entière" dans la ligne all-day */
.fc .fc-timegrid-axis {
    text-align: center !important;
    vertical-align: middle !important;
}

.fc .fc-timegrid-slot-label {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Pour le label all-day spécifiquement */
.fc .fc-timegrid-axis-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-timegrid-axis-cushion {
    text-align: center !important;
}