/* Minimal overlay neutralizer for Syncfusion Excel filter inside DataFlex modals */
/* Drop this AFTER Syncfusion CSS */
.e-dlg-overlay {
  z-index: 10040 !important;        /* keep it below any dialog */
  pointer-events: none !important;  /* do not intercept clicks */
  background-color: transparent !important; /* no visible grey dim */
}
.e-dialog {
  z-index: 10060 !important;        /* keep dialog above */
}

/* Highlight header background only when the filter icon is in 'filtered' state */
.e-grid th.e-headercell:has(.e-filtermenudiv.e-filtered) {
  background-color: #d2f3e0 !important;  /* light green */
  border-bottom: 2px solid #34a853 !important;
}
