/* Lightbox Styling */
#simple-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#simple-lightbox .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

#simple-lightbox .lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

#simple-lightbox .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#simple-lightbox .lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.2em;
    text-align: center;
}
/* Navigatie pijlen */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 15px;
    user-select: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-nav:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 30px;
        padding: 10px;
    }
}
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
}
