.galleryCarousel-container {
    position: relative;
    max-width: 700px;
    margin-bottom: 40px;
}

.galleryCarousel-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.gallery-slide-selector {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    align-items: center;
    align-content: center;
    margin: 0 auto;
}

.galleryCarousel-wrapper {
    position: relative;
    display: block;
}

.galleryCarousel-viewport {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 10px;
}

.galleryCarousel-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: 400px;
    display: flex;
    align-items: left;
    justify-content: left;
    background: var(--card-bg);
    color: white;
    border-radius: 12px;
}

/* Navigation Buttons */

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: background 0.2s;
}

.gallery-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-nav-left {
    left: 10px;
}

.gallery-nav-right {
    right: 10px;
}

@media (max-width: 768px) {

    .container h2
    {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
}

.galleryCarousel-container {
    max-width: 300px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.gallery-slide {
    min-width: 340px;
}

.galleryCarousel-wrapper {
    max-width: 100vh;
    margin-bottom: 12px;
}

.gallery-nav-left {
    left: 0;
}

.gallery-nav-right {
    right: 0;
}
}