/* blaze_type.css - CHG-20260727-009, revised CHG-20260727-030
   House typography for ERP2: all table data is Inter at 14px (INCURE, 27-Jul).

   The original rule was `table td { font-size:15px !important }`. It never took
   effect anywhere, because erp-app.js injects an inline stylesheet containing
       .table-wrap td { font-size:12px !important }
   and with both marked !important the more specific selector wins:
       .table-wrap td   (0,1,1)   beats   table td   (0,0,2)
   Every table in the app sits inside .table-wrap, so the face changed to Inter
   but the size stayed at 12px. These selectors are specific enough to win. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Data cells - 14px */
.table-wrap table td,
.table-wrap table tbody td,
table td,
table tbody td {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
}

/* Headers take the same face and size so a table reads as one object. */
.table-wrap table th,
.table-wrap table thead th,
table th,
table thead th {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
}