/* Styles pour la popup événement */
.popup-event-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-event-box {
    background: #fff;
    padding: 2em;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
}

.popup-event-box button[aria-label="Fermer"] {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
}

.popup-event-box img {
    max-width: 30rem;
    height: auto;
    margin-bottom: 1em;
    border-radius: 5px;
}

.popup-event-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}
.popup-event-box p {
    font-size: 1rem;
}

.popup-event-box .event-desc {
    margin-bottom: 1em;
}
