/* Lightbox styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}
 
.lightbox-content {
    display: none;  /* Add this line */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}
 
#lightbox-img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}
 
.gallery-image {
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
    height: 250px;  /* Set a fixed height for uniformity */
    object-fit: cover;  /* This maintains aspect ratio while filling the container */
    display: block;
}
 
.gallery-image:hover {
    opacity: 0.8;
}
 
.close-lightbox {
    position: fixed;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}