/* --- Mikbal Soft Blue Animated Toastr (#00a8e8 Edition) --- */

#toast-container > div {
    border-radius: 24px !important;
    padding: 22px 25px 22px 65px !important;
    /* Mavi temalı derin gölge */
    box-shadow: 0 20px 40px rgba(0, 168, 232, 0.18) !important;
    backdrop-filter: blur(16px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(200%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    overflow: hidden !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    background-image: radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent) !important;
}

/* Giriş Animasyonu */
#toast-container > .toast {
    animation: toastSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toastSlideIn {
    0% { transform: translateX(100%) scale(0.5); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* Başlık ve Mesaj Fontları */
.toast-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    color: #ffffff !important;
}

.toast-message {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* --- Dinamik Renkler (Blue Glass Variations) --- */

/* Başarılı (Success) - Mikbal Mavi Cam */
.toast-success {
    background-color: rgba(0, 168, 232, 0.85) !important;
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
}
.toast-success::before {
    content: "\eb7b"; 
    font-family: 'remixicon' !important;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #ffffff;
}

/* Hata (Error) - Koyu Mavi/Lacivert Cam */
.toast-error {
    background-color: rgba(0, 86, 179, 0.9) !important;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3) !important;
}
.toast-error::before {
    content: "\eb96"; 
    font-family: 'remixicon' !important;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #ffffff;
}

/* Uyarı (Warning) - Soft Turkuaz Cam */
.toast-warning {
    background-color: rgba(0, 206, 209, 0.85) !important;
    box-shadow: 0 15px 30px rgba(0, 206, 209, 0.2) !important;
}

/* Progress Bar (Parlak Beyaz) */
.toast-progress {
    height: 5px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0 0 24px 24px !important;
}
.toast-success .toast-message:empty, 
.toast-error .toast-message:empty {
    display: none !important;
}