.slider-container {
    width: 100%; /* Slider nimmt die volle Breite ein */
    max-width: 600px; /* Maximale Breite für größere Bildschirme */
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    flex-shrink: 0;
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

/* Media Query für mobile Geräte */
@media (max-width: 600px) {
    .slider-container {
        margin: 20px auto; /* Weniger Abstand auf mobilen Geräten */
    }
}