/* 
 * CSS for the Gallery Modal
 */

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    width: 80vw;
    height: 70vh;
    max-width: 1400px;
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

/* Ajustes para el Swiper dentro del modal */
.gallery-modal .gallery-swiper {
    width: 100%;
    height: 100%;
}

.gallery-modal .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-modal .swiper-button-prev,
.gallery-modal .swiper-button-next {
    color: #ffffff;
}

.gallery-modal .swiper-pagination-bullet-active {
    background: #ffffff;
} 