/* Styles pour le popup spécifique au calendrier */
#popup-overlay-calendrier {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fond noir semi-transparent */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popup-content-calendrier {
     background-image: url('/logos/calendrier.jpg'); /* Remplace par l'URL de ton image */
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    max-width: 80%;
    max-height: 80vh; /* Limite la hauteur de la popup à 80% de la hauteur de la fenêtre */
    text-align: center;
    overflow-y: auto; /* Ajoute un ascenseur vertical si le contenu dépasse */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
}

#popup-overlay-calendrier.active {
    display: flex;
}

#popup-content-calendrier.active {
    transform: scale(1); /* Apparition progressive */
}

#calendrier-container {
    margin: 0 auto;
    text-align: left;
}

/* Styles pour la section calendrier */
.calendar {
   padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event {
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #ffffff;
}
