/* Lightbox styles */
        .lightbox {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .lightbox-content {
            position: relative;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            display: inline-block; /* Fit to the size of the content */
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 75vh;
            height: auto;
            border-radius: 8px;
            display: block;
            margin: 0 auto;
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff5a5a;
            color: #fff;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Responsive styles for mobile */
        @media (max-width: 768px) {
            .lightbox-content {
                width: auto;
                max-width: 95%;
            }
        }