.slider-container {
    width: 100%;
    height: 100vh; /* Tüm ekranı kaplasın */
    height: 100dvh;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigasyon Butonlarını Özelleştir */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
}

/* Sayfa Noktaları (Pagination) */
.mySwiper .swiper-pagination-bullet {
    background: white !important;
}