/* Styles pour la modal d'événement du calendrier */
.event-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Prend exactement la largeur du calendrier */
    height: 100%;
    background-color: rgba(88, 154, 217);
    display: none;
    z-index: 100;
    box-sizing: border-box;
    padding: 40px;
}

.event-modal-content {
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
}

.event-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.event-modal-close:hover {
    color: #000;
}

/* Styles simplifiés pour le contenu de l'événement */
.event-modal {
    text-align: left;
    font-weight: bold;
    @apply text-content lg:text-xl;
}