﻿#toast-container > .toast-warning {
    color: #343a40 !important;
    background-image: none !important; /* Dòng này cực kỳ quan trọng: Xóa icon trắng cũ */
    background-color: #ffc107 !important;
    opacity: 1 !important;
    padding-left: 50px !important; /* Tạo khoảng trống bên trái để nhét icon FA vào */
    position: relative;
}

    #toast-container > .toast-warning .toast-close-button {
        color: #343a40 !important;
        text-shadow: none !important;
        opacity: 0.6;
    }

    /* Icon mới của mày đây */
    #toast-container > .toast-warning::before {
        content: "\f071";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 17px; /* Chỉnh trái phải ở đây */
        top: 50%; /* Căn giữa dọc */
        transform: translateY(-50%); /* Đảm bảo chính giữa tuyệt đối */
        color: #343a40 !important;
        font-size: 20px;
    }
