/* public/css/overrides/table-headers-light.css */
/* Change ONLY text color in table headers to white for Light mode
   Keep background and Dark mode styling intact */

body.light-layout table thead th,
body.light-layout table thead td,
body.light-layout .table thead th,
body.light-layout .table thead td,
body.light-layout table.dataTable thead>tr>th,
body.light-layout table.dataTable thead>tr>td,
body.light-layout .dataTables_wrapper .dataTables_scrollHead th,
body.light-layout .dataTables_wrapper .dataTables_scrollHead td,
body.light-layout .fixedHeader-floating thead th,
body.light-layout .fixedHeader-floating thead td {
  color: #ffffff !important;
}

/* Handle tables using .thead-dark / .bg-dark in light mode */
body.light-layout .thead-dark th,
body.light-layout .thead-dark td,
body.light-layout .bg-dark thead th,
body.light-layout .bg-dark thead td {
  color: #ffffff !important;
}
