

/* Swiper Container Wichtig! */
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative; 
    border-radius: 20px;
    overflow: hidden;
}



/* Pfeile im Bild platzieren */
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; 
    color: white !important;
    font-size: 30px !important;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

/* Hover-Effekt für Pfeile */
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Positionierung */
.swiper-button-prev {
    left: 15px;
}
.swiper-button-next {
    right: 15px;
}

/* Standard-Swiper-Pfeile entfernen */
.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}

/* Pagination wieder ins Bild setzen */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    right: 15px !important;
    left: auto !important;
    width: auto !important;
    z-index: 10; /* Über dem Bild */
}

/* Pagination Punkte als O mit aktivem Punkt */
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 2px solid white;
    background: transparent;
    opacity: 1;
}

/* Aktiver Punkt */
.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid white;
}