

/* Styles de la fenêtre modale */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fond semi-transparent */
    overflow: auto;
    padding-top: 60px;
}

.modal-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    display: block;
    margin: auto;
    width: 80%; /* Taille de l'image en mode galerie */
    max-width: 700px;
}

#caption {
    color: #ccc;
    text-align: center;
    font-size: 18px;
    padding: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Boutons de navigation */
.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    border: none;
    padding: 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
