/* Simple Lightbox overlay */
#lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#lightbox-overlay.active {
    display: flex;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: default;
    border-radius: 4px;
}

#lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-gallery a,
.lightbox-gallery a:focus,
.lightbox-gallery a:active,
.lightbox-gallery a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}
