/* Haupt-Container */
.scrollable-thumb-gallery {
    display: flex;
    width: 100%;
    gap: 15px;
}

/* Thumbnail-Spalte */
.scrollable-thumb-gallery .gallery-thumbnails-wrapper {
    display: none;
    width: 100px;
    flex-shrink: 0;
    position: relative;
}

.scrollable-thumb-gallery .gallery-thumbnails-container {
    height: calc(5 * (80px + 10px));
    overflow: hidden;
    position: relative;
}

.scrollable-thumb-gallery .gallery-thumbnails {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* Thumbnail-Stile */
.scrollable-thumb-gallery .gallery-thumbnail {
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.scrollable-thumb-gallery .gallery-thumbnail.active {
    border-color: #333;
}

.scrollable-thumb-gallery .gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.scrollable-thumb-gallery .thumb-nav-button {
    background: #177443;
    border: 1px solid #177443;
    border-radius: 3px;
    width: 100%;
    padding: 5px 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.scrollable-thumb-gallery .thumb-nav-button:hover {
    background: #177443;
}

.scrollable-thumb-gallery .thumb-nav-up {
    margin-bottom: 5px;
}

.scrollable-thumb-gallery .thumb-nav-down {
    margin-top: 5px;
}

/* Haupt-Galerie (Swipe-Container) */
.scrollable-thumb-gallery .gallery-main {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}

.scrollable-thumb-gallery .swipe-gallery-container {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease-out;
}

.scrollable-thumb-gallery .swipe-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.scrollable-thumb-gallery .swipe-gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination (Mobile) */
.scrollable-thumb-gallery .swipe-gallery-pagination {
    text-align: center;
    margin-top: 15px;
}

.scrollable-thumb-gallery .swipe-gallery-pagination span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 4px;
    cursor: pointer;
}

.scrollable-thumb-gallery .swipe-gallery-pagination span.active {
    background: #118cee;
}

/* Responsive (Desktop vs. Mobile) */
.scrollable-thumb-gallery .mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .scrollable-thumb-gallery .gallery-thumbnails-wrapper {
        display: block;
    }
    .scrollable-thumb-gallery .mobile-only {
        display: none;
    }
}