/* Body scroll lock */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Lightbox Background */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
}

/* The image inside the lightbox */
#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    cursor: default;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    line-height: 1;
}

.close-btn:focus {
    outline: 2px solid #0382b7;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    #lightbox img {
        max-width: 95%;
        max-height: 75%;
    }
}