/*
 * Restore the visible effect of the existing "表格斑马纹" switch.
 * The earlier global theme forces every table cell to white with !important,
 * which masks Naive UI's striped-row background even though the switch works.
 */
.index-root
  .n-data-table
  .n-data-table-tr.n-data-table-tr--striped
  > .n-data-table-td {
  background: #f4f7fb !important;
}

/* Keep the existing hover feedback above both plain and striped rows. */
.index-root
  .n-data-table
  .n-data-table-tr:not(.n-data-table-tr--summary):hover
  > .n-data-table-td {
  background: #f8fbff !important;
}
