/**
 * إخفاء رسائل أخطاء DataTables تماماً
 */

/* إخفاء رسائل المعالجة */
.dataTables_processing {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* إخفاء رسائل الخطأ */
.dt-error {
    display: none !important;
    visibility: hidden !important;
}

/* إخفاء تحذيرات DataTables */
.alert[role="alert"] {
    display: none !important;
}

/* إخفاء أي رسائل تحتوي على DataTables warning */
div:contains("DataTables warning") {
    display: none !important;
}

/* إخفاء wrapper للمعالجة */
.dataTables_wrapper .dataTables_processing {
    display: none !important;
}

/* إخفاء أي عناصر تحتوي على نص خطأ DataTables */
*[class*="dataTables"]:contains("warning") {
    display: none !important;
}

/* إخفاء console errors visually */
.console-error {
    display: none !important;
}

/* إخفاء أي alert يحتوي على DataTables */
.alert:contains("DataTables") {
    display: none !important;
}

/* إخفاء أي div يحتوي على Incorrect column count */
div:contains("Incorrect column count") {
    display: none !important;
}

/* إخفاء أي رسالة خطأ عامة */
.error-message,
.warning-message,
.datatables-error {
    display: none !important;
}