/* Overlay : fond grisé + plein écran */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Grise la page */
    display: none;
    justify-content: center; /* Centrage horizontal */
    align-items: center;     /* Centrage vertical */
    z-index: 1000;
}

/* Conteneur image */
.modal-popup {
    position: relative;
    top: 10px;
    background-color: #ffffff;
    padding-top: 60px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-radius: 4px;
    
    border: 1px solid black; /* liseré noir de 1px */
    box-sizing: border-box;   /* pour que la bordure soit incluse dans la taille */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8); /* Ombre portée */
}

/* Image responsive */
.modal-popup img {
    max-width: 80vw;
    max-height: 80vh;
    display: block;
}

/* Bouton fermer */

.modal-close {
	position: absolute;
    top: 5px;
    right: 10px;
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #00cccc;
}

.modal-popup h2 {
    margin: 10px 0 0 0;
    font-size: 14px;
    text-align: center;
    font-style: italic;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
}

