.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.popup-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
}

/* Ajouter ce CSS pour ajuster la taille de l'image du popup */
.popup img {
    max-height: calc(100vh - 22%);
    width: auto;
	margin-top: 30px;
}



