/* =========================================================================
   DOSYA: public_html/assets/css/swal-custom.css
   GÖREV: SweetAlert2 Toast Siyah Ekran & Mobil Blur'u %100 Yok Etme
   ========================================================================= */

/* 1. TOAST GÖRÜNDÜĞÜNDE CONTAINER'IN BLUR, ARKA PLAN VE BOYUTUNU TAMAMEN SIFIRLA */
body.swal2-toast-shown .swal2-container,
html.swal2-toast-shown .swal2-container,
.swal2-container.swal2-top-end,
.swal2-container.swal2-top-start,
.swal2-container.swal2-top,
.swal2-container.swal2-center,
.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-start,
.swal2-container.swal2-bottom,
.swal2-container.swal2-backdrop-hide,
.swal2-container.swal2-no-backdrop {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    box-shadow: none !important;
    pointer-events: none !important; /* Arkadaki sayfanın butonlarına basılabilmesini sağlar */
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    inset: unset !important;
    top: 15px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    position: fixed !important;
    overflow: visible !important;
}

/* 2. SADECE VE SADECE NORMAL MODALLARDA (Alert / Soru / Onay) ARKA PLANI KARART & BULANIKLAŞTIR */
body.swal2-shown:not(.swal2-toast-shown) .swal2-container {
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    pointer-events: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    position: fixed !important;
    z-index: 999999 !important;
}

/* 3. TOAST BİLDİRİM KUTUSUNUN KENDİSİ (NET, ŞIK VE SIFIR BLUR) */
.swal2-popup.swal2-toast {
    pointer-events: auto !important;
    background-color: #0f172a !important; /* Koyu Slate */
    color: #ffffff !important;
    border: 1px solid #334155 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
    padding: 10px 16px !important;
    margin: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    font-family: 'Inter', 'Poppins', sans-serif !important;
}

.swal2-popup.swal2-toast .swal2-title {
    color: #f8fafc !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 8px !important;
}

.swal2-popup.swal2-toast .swal2-icon {
    margin: 0 !important;
    transform: scale(0.8) !important;
}

/* 4. MOBİL CİHAZLARDA TOAST KONUMLANDIRMASI */
@media (max-width: 768px) {
    body.swal2-toast-shown .swal2-container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 10px !important;
        top: 10px !important;
        right: 0 !important;
        left: 0 !important;
        bottom: auto !important;
        display: flex !important;
        justify-content: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .swal2-popup.swal2-toast {
        width: 92% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
}