/* Custom toastr styles */

/* Hide default toastr error icon */
#toast-container > .toast-error:before {
    content: "" !important;
    display: none !important;
}

/* Add Font Awesome icon for error toast */
#toast-container > .toast-error {
    background-image: none !important;
    padding-left: 50px;
}

#toast-container > .toast-error .toast-message:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f06a"; /* fa-circle-exclamation */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
}

