
  /* POUR L'AFFICHE DES IMAGE DANS DES BOX ET LE ZOOM DANS LE MODAL*/
   /* Style pour le conteneur des images */
 
        /* Style pour le conteneur des images */
        .image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
        }

        /* Style pour chaque box d'image */
        .image-box {
            position: relative;
            width: 10%;
            padding-bottom: 10%; /* Maintient un ratio carré */
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            overflow: hidden;
            transition: transform 0.2s;
        }

        /* Style pour l'image à l'intérieur du box */
        .image-box img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 100%;
            max-height: 100%;
        }

        /* Effet au survol */
        .image-box:hover {
            transform: scale(1.05);
        }

        /* Style pour le modal */
        #myModal.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
        }

        #myModal .modal-content {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            background-color: rgba(0, 0, 0, 0.0); 
            
            border:none;
            margin: auto;
            padding: 10px;
            max-width: 80%;
            max-height: 80%;
        }

        #myModal .modal-content img {
            margin-top: 10% !important;
            width: 50%;
            height: auto;
        }

        #myModal .close {
            position: absolute;
            top: 10px;
            right: 20px;
            color: #fff;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
        }
  
/*Pagination des images*/
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .step-links {
    display: flex;
    gap: 10px;
}

.pagination a {
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s;
    /* padding: 2px 4px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s; */
}

.pagination a:hover {
    background-color: #0056b3;
}

.pagination .current {
    background-color: #6c757d;
    color: white;
    /* padding: 8px 12px;
    
    border-radius: 4px; */
}



