#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightboxContent {
    position: relative;
    width: 80%;
    max-width: 800px;
}

#closeLightbox {
    position: absolute;
    top: -40px; /* Move the button above the top edge */
    right: 10px;
    font-size: 30px;
    color: #ff9800; /* Orange color for close button */
    cursor: pointer;
}

#lightboxImage, #lightboxVideo {
    width: 100%;
    height: auto;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: #ff9800; /* Orange color for arrows */
    cursor: pointer;
    user-select: none;
    z-index: 1000; /* Ensure arrows are above other content */
}

#prevLightbox {
    left: -30px;
}

#nextLightbox {
    right: -30px;
}
