/**
 * Custom Toastr Styles
 * Moved from inline styles for better performance
 */

/* Global Font Override */
* {
    font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

/* Toastr Success - Green */
.toast-success {
    background-color: #51A351 !important;
    color: #ffffff !important;
}

/* Toastr Error - Red */
.toast-error {
    background-color: #BD362F !important;
    color: #ffffff !important;
}

/* Toastr Warning - Orange */
.toast-warning {
    background-color: #F89406 !important;
    color: #ffffff !important;
}

/* Toastr Info - Blue */
.toast-info {
    background-color: #2F96B4 !important;
    color: #ffffff !important;
}

/* Toastr Title */
#toast-container > div .toast-title {
    color: #ffffff !important;
    font-weight: bold;
}

/* Toastr Message */
#toast-container > div .toast-message {
    color: #ffffff !important;
}

/* Toastr Close Button */
#toast-container > div .toast-close-button {
    color: #ffffff !important;
    opacity: 0.8;
}

#toast-container > div .toast-close-button:hover {
    opacity: 1;
}
