    .image-lightbox-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(11, 15, 25, 0.95);
        z-index: 999999;
        justify-content: center;
        align-items: center;
        user-select: none;
        -webkit-user-select: none;
    }

    .image-lightbox-wrapper {
        position: relative;
        max-width: 65%;
        max-height: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-lightbox-img {
        max-width: 100%;
        max-height: 65vh;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        pointer-events: none;
    }

    .image-lightbox-btn {
        position: absolute;
        background-color: #222222;
        border: 1px solid #ccc;
        width: 34px;
        height: 34px;
        cursor: pointer;
        border-radius: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease, transform 0.2s ease;
        z-index: 10;
        outline: none;
        padding: 0;
    }

    .image-lightbox-btn:hover {
        background-color: #333; 
    }

    .image-lightbox-btn img {
        width: 16px;  
        height: 16px;
        display: block;
        pointer-events: none; 
        filter: invert(1);
    }

    .image-lightbox-close {
        color: #ffffff;
        font-size: 28px;
        top: -65px;
        right: 0;
        font-family: Arial, sans-serif;
        line-height: 1;
    }

    .image-lightbox-close:active {
        transform: scale(0.95);
    }

    .image-lightbox-prev {
        left: -75px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
    }

    .image-lightbox-prev:active {
        transform: translateY(-50%) rotate(-90deg) scale(0.95);
    }

    .image-lightbox-next {
        right: -75px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
    }

    .image-lightbox-next:active {
        transform: translateY(-50%) rotate(90deg) scale(0.95);
    }

    @media (max-width: 768px) {
        .image-lightbox-wrapper {
            max-width: 95%;
            max-height: 70%;
        }
        
        .image-lightbox-prev {
            left: 15px;
            top: auto;
            bottom: -80px;
            transform: rotate(-90deg);
        }

        .image-lightbox-prev:active {
            transform: rotate(-90deg) scale(0.95);
        }
        
        .image-lightbox-next {
            right: 15px;
            top: auto;
            bottom: -80px;
            transform: rotate(90deg);
        }

        .image-lightbox-next:active {
            transform: rotate(90deg) scale(0.95);
        }
        
        .image-lightbox-close {
            top: -65px;
            right: 15px;
        }
    }