/* Eklenti Ana Konteyner */
.muhasebe-slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Swiper Dış Alanı - Yükseklik resmin oranına göre otomatik esner */
.muhasebe-swiper {
    width: 100%;
    height: auto; /* Sabit yükseklikler kaldırılarak görsel oranına sadık kalınması sağlandı */
}

/* Tıklanabilir Link */
.muhasebe-slide-link {
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Tam Ekran Resim Ayarları */
.muhasebe-slide-image {
    width: 100%;
    height: auto; /* Yükseklik otomatik, böylece görsel ezilmez */
    object-fit: contain; /* Görsel kesinlikle kırpılmaz, tam sığar */
    display: block;
}

/* Swiper Yön Okları */
.muhasebe-btn-next,
.muhasebe-btn-prev {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.4);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.muhasebe-btn-next:hover,
.muhasebe-btn-prev:hover {
    background: #0b459c;
    transform: scale(1.1);
}

.muhasebe-btn-next::after,
.muhasebe-btn-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Swiper Alt Noktalar (Pagination) */
.muhasebe-pagination {
    bottom: 20px !important;
}

.muhasebe-pagination .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.muhasebe-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #e30613 !important; /* Görseldeki kırmızı vurgu tonu */
    width: 28px;
    border-radius: 5px;
}

/* Responsive (Mobil ve Tablet Uyum) */
@media (max-width: 768px) {
    .muhasebe-btn-next, 
    .muhasebe-btn-prev {
        display: none !important; /* Mobilde oklar gizlenir, dokunmatik kaydırma öne çıkar */
    }
}
