﻿.scroll-container {
    height: 175px;
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: auto;
}

.scroll-spacer {
    flex: 0 0 50vw; /* Damit der erste/letzte Eintrag zentriert werden kann */
}

.scroll-pic {
    max-height: 80%;
    max-width: 90%;
    flex-grow: 1;
    aspect-ratio: 1 / 1;
}

.sliderLabel {
    margin-bottom: 0px;
    flex-grow: 2;
    padding-left: 10px;
}

.scroll-item {
    max-width: 100%;
    flex: 0 0 500px;
    height: 95%;
    background-color: rgba(255, 255, 255, 0.4);
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: solid #aad200;
    border-top: solid #aad200;
    vertical-align: text-bottom;
    text-align: center;
}
