/**
 * GLightbox Minimal CSS Placeholder
 *
 * NOTE: This is a placeholder file. For production use, download the actual GLightbox library:
 * https://github.com/biati-digital/glightbox
 *
 * Usage:
 * npm install glightbox
 * OR
 * Download from: https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css
 */

/* Minimal lightbox styles for development */
.glightbox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(11, 11, 11, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glightbox-clean .gslide-image img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}
