/* Lightbox2 Custom Overrides for Distrito V */

/* Fix Image Paths */
.lb-nav a.lb-prev {
    background-image: url('../img/lightbox/prev.png');
}

.lb-nav a.lb-next {
    background-image: url('../img/lightbox/next.png');
}

.lb-data .lb-close {
    background-image: url('../img/lightbox/close.png');
}

.lb-cancel {
    background-image: url('../img/lightbox/loading.gif');
}

/* Overlay Background */
.lightboxOverlay {
    background-color: #000;
    opacity: 0.85 !important;
}

/* Image Border */
.lb-outerContainer {
    background-color: transparent !important;
    border-radius: 4px;
}

.lb-image {
    border: 4px solid #F7F7F6; /* Gris claro frame */
    border-radius: 4px;
}

/* Close Button Position */
.lb-close {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lb-close:hover {
    opacity: 1;
}

/* Caption Styling */
.lb-caption {
    color: #F7F7F6 !important;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.lb-number {
    color: #92B0AE !important; /* Verde claro secundario */
    font-family: 'Lato', 'Arial', sans-serif;
}

/* Navigation Arrows */
.lb-prev, .lb-next {
    opacity: 0.5 !important;
    transition: opacity 0.3s;
}

.lb-prev:hover, .lb-next:hover {
    opacity: 1 !important;
}

/* Fix Layout Instability (Augmenting Width/Height) */
.lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    margin-top: 0 !important; /* Override library calculation */
}

.lightboxOverlay {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure body doesn't shift */
body.lb-disable-scrolling {
    overflow: hidden !important;
}
