/* Style pour la popupEvent (cachÃƒÆ’Ã‚Â©e par dÃƒÆ’Ã‚Â©faut) */
       #popupEvent {
            display: none; /* CachÃƒÆ’Ã‚Â© par dÃƒÆ’Ã‚Â©faut */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Image agrandie dans la popup */
        #popupImage {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
        }

        /* Miniatures */
        .eventImg {
            cursor: pointer;
            width: 200px;
            margin: 10px;
            border-radius: 5px;
            transition: transform 0.2s;
        }

        .eventImg:hover {
            transform: scale(1.05);
        }

        .expand-icon {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            padding: 5px;
            font-size: 18px;
            cursor: pointer;
        }

        /* Positionner l'image d'origine dans un conteneur pour pouvoir placer l'icÃƒÆ’Ã‚Â´ne */
        .image-container {
            position: relative;
            display: inline-block;
        }
