/* Titre déroulant centré */
.timeslots-title {
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 12px 40px;
    border-radius: 6px;
    user-select: none;
    color: #000;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Hover vert */
.timeslots-title:hover {
    background-color: #81d742;
    color: #000;
}

/* Flèche */
.timeslots-title::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #000;
}

/* Flèche ouverte */
.timeslots-title.open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Masquer l'auteur dans les créneaux */
.timeslot-user {
    display: none !important;
}