/* Admin thumbnail styles */
#gallery_images_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Add gap between the thumbnails */
}

.gallery-thumbnail {
    position: relative;
    display: inline-block;
}

.gallery-thumbnail img {
    display: block; /* Ensures the img takes only necessary space */
    border: 1px solid #ddd;
    padding: 5px;
    max-width: 100px;
}

.remove-thumbnail {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.gallery {
    width: 100%;
    max-width: 620px;
    margin: 40px auto;
}

.gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
    width: auto;
    height: 600px;
}

.gallery-slider .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    opacity: .1;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide img {
    width: auto;
    height: 100%;
}