
        /* Lightbox styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            z-index: 999999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .lightbox-container {
            position: relative;
            max-width: 90%;
            max-height: 80%;
            margin: 0 auto;
            text-align: center;
        }
        
        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            height: auto;
            display: block;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-caption {
            color: white;
            font-size: 14px;
            margin-top: 10px;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: white;
            cursor: pointer;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
        }
        
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: white;
            cursor: pointer;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .lightbox-prev:hover,
        .lightbox-next:hover,
        .lightbox-close:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        @keyframes lightbox-fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-overlay.active {
            display: flex;
            animation: lightbox-fade-in 0.3s ease-in-out;
        }
        
        @media (max-width: 768px) {
            .lightbox-prev,
            .lightbox-next {
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 18px;
            }
            
            .lightbox-container {
                max-width: 95%;
                max-height: 85%;
            }
        }