/* Ensure LightGallery container styling */
#dynamic-gallery-demo, #dynamic-video-gallery-demo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Thumbnail styles */
.lightgallery .lg-thumb-outer {
    background: #fff;
    padding: 10px;
}

.lightgallery .lg-thumb-item {
    margin-right: 5px;
}

.lightgallery .lg-thumb-item img {
    border-radius: 4px;
    transition: transform 0.3s;
}

.lightgallery .lg-thumb-item img:hover {
    transform: scale(1.1);
}

/* Gallery image styles */
.lightgallery .lg-item {
    padding: 5px;
}

.lightgallery .lg-image {
    max-width: 100%;
    border-radius: 8px;
}

/* Caption styles */
.lightgallery .lightGallery-captions {
    text-align: center;
    margin-top: 10px;
}
