/* ==========================================================================
   TOASTR v2 — override cache-busted, đồng bộ new-UI.
   Lý do: site.css có rule .toast-* với background:#fff !important + không icon,
   đè lên toastr-modern.css (không !important) → toast hiển thị trắng trơn.
   File này nạp TRỰC TIẾP sau bundle (asp-append-version) và dùng !important
   để tái lập gradient + icon + chữ trắng của thiết kế mới.
   ========================================================================== */

/* Khung toast */
#toast-container > div{
    width:380px !important;
    max-width:calc(100vw - 40px) !important;
    padding:16px 44px 16px 56px !important;
    border-radius:14px !important;
    background-position:18px center !important;
    background-repeat:no-repeat !important;
    background-size:22px !important;
    color:#fff !important;
    border:none !important;
    box-shadow:0 10px 30px rgba(10,20,60,.18),0 2px 6px rgba(10,20,60,.10) !important;
    opacity:1 !important;
    font-family:'Be Vietnam Pro',system-ui,-apple-system,'Segoe UI',sans-serif !important;
}
#toast-container > div:hover{
    box-shadow:0 14px 36px rgba(10,20,60,.24),0 4px 10px rgba(10,20,60,.12) !important;
}

.toast-title{font-weight:800 !important;font-size:14.5px !important;margin-bottom:2px !important;color:#fff !important}
.toast-message{font-weight:500 !important;font-size:13.5px !important;line-height:1.5 !important;color:#fff !important;opacity:.97 !important}
.toast-message a{color:#fff !important;text-decoration:underline !important}
.toast-close-button{color:rgba(255,255,255,.85) !important;text-shadow:none !important;opacity:.85 !important;font-size:18px !important;right:14px !important}
.toast-progress{background:rgba(255,255,255,.5) !important;height:3px !important}

/* Success — xanh lá */
#toast-container > .toast-success{
    background-color:#059669 !important;
    background-image:linear-gradient(135deg,#10B981 0%,#059669 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") !important;
    background-repeat:no-repeat,no-repeat !important;
    background-position:center,18px center !important;
    background-size:cover,22px !important;
    border-left:4px solid #047857 !important;
}

/* Error — đỏ */
#toast-container > .toast-error{
    background-color:#DC2626 !important;
    background-image:linear-gradient(135deg,#EF4444 0%,#DC2626 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E") !important;
    background-repeat:no-repeat,no-repeat !important;
    background-position:center,18px center !important;
    background-size:cover,22px !important;
    border-left:4px solid #B91C1C !important;
}

/* Warning — cam */
#toast-container > .toast-warning{
    background-color:#D97706 !important;
    background-image:linear-gradient(135deg,#F59E0B 0%,#D97706 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") !important;
    background-repeat:no-repeat,no-repeat !important;
    background-position:center,18px center !important;
    background-size:cover,22px !important;
    border-left:4px solid #B45309 !important;
}

/* Info — xanh dương (brand) */
#toast-container > .toast-info{
    background-color:#1E40AF !important;
    background-image:linear-gradient(135deg,#3B82F6 0%,#1E40AF 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E") !important;
    background-repeat:no-repeat,no-repeat !important;
    background-position:center,18px center !important;
    background-size:cover,22px !important;
    border-left:4px solid #1D4ED8 !important;
}

.toast-message a:hover{color:rgba(255,255,255,.85) !important}
