@charset "utf-8";
/* CSS Document */

.lightbox {
            visibility: hidden;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            z-index: 1000;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease, visibility 0s linear 1s;
        }
        .lightbox.active {
            visibility: visible;
            opacity: 1;
            transition: opacity 1s ease;
        }
        .lightbox-content {
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            transform: scale(0.8);
            transition: transform 1s ease;
            position: relative;
        }
        .lightbox.active .lightbox-content {
            transform: scale(1);
        }
        .lightbox-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .lightbox-content p {
            margin: 20px 0;
            color: white;
            font-size: 1.2em;
        }
        .close-btn {
            display: block;
            margin: 0 auto;
            padding: 10px 20px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        @media screen and (max-width: 768px) {
            .lightbox-content {
                width: 95%;
            }
            .lightbox-content p {
                font-size: 1em;
            }
        }