
.gallery img, 
.gallery video {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

#lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img, 
#lightbox video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    object-fit: contain;
}

#lightbox:target {
    display: flex;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.custom-arrow {
    color: rgb(0, 0, 0);
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1000;
    position: absolute;
}

.custom-arrow:hover {
    cursor: pointer;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}
