/* Lightbox CSS */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: normal;
    line-height: 1;
}

.lightbox-overlay.active {
    display: block;
}

/* Hide scrollbar for IE and Edge */
.lightbox-overlay {
    -ms-overflow-style: none;
}

/* Hide scrollbar for Firefox */
.lightbox-overlay::-webkit-scrollbar {
    display: none;
}
