/* إخفاء جميع الرسائل المنبثقة والإشعارات */

/* إخفاء الرسائل المنبثقة */
div[style*="position: fixed"][style*="background: #dc2626"],
div[style*="position: fixed"][style*="background: #b91c1c"],
div[style*="position: fixed"][style*="background: #059669"],
div[style*="position: fixed"][style*="background: #10b981"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* إخفاء أي إشعارات أخرى */
.notification,
.toast,
.alert,
.message-popup {
    display: none !important;
}

/* إخفاء الرسائل التي تحتوي على نصوص الإصلاح */
div[style*="z-index: 10000"],
div[style*="z-index: 9999"] {
    display: none !important;
}

/* إخفاء الرسائل المنبثقة بشكل عام */
body > div[style*="position: fixed"][style*="top:"][style*="background:"] {
    display: none !important;
}