﻿#lightbox {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.93);
    z-index: 99999 !important;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important; /* ← important */
    user-select: none;
    -webkit-user-select: none;
}

    #lightbox.active {
        display: flex !important;
    }

#lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

#lightbox img,
#lightbox video {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    object-fit: contain;
    pointer-events: auto;
    user-select: none;
}
