.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 150px;
    /* Fixed width for all images */
    height: 150px;
    /* Fixed height for all images */
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Custom button styles */
.lg-icon {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    height: 40px;
    width: 40px;
}

.lg-icon.lg-next {
    right: 10px;
}

.lg-icon.lg-prev {
    left: 10px;
}

.lg-icon.lg-close {
    top: 10px;
    right: 10px;
}
