/* Custom Toastr Styles */
#toast-container > div {
    opacity: 1 !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
    filter: alpha(opacity=100) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}
.toast-success {
    background-color: #07bc0c !important;
}
.toast-error {
    background-color: #e74c3c !important;
}
.toast-info {
    background-color: #3498db !important;
}
.toast-warning {
    background-color: #f1c40f !important;
}
#toast-container > .toast {
    background-image: none !important;
    padding: 15px 15px 15px 50px !important;
}
#toast-container > .toast:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
}
.toast-success:before { content: "\f058"; }
.toast-error:before { content: "\f06a"; }
.toast-info:before { content: "\f05a"; }
.toast-warning:before { content: "\f071"; }

/* RTL Adjustments */
[dir="rtl"] #toast-container > .toast {
    padding: 15px 50px 15px 15px !important;
}
[dir="rtl"] #toast-container > .toast:before {
    left: auto;
    right: 15px;
}
