/* Force table striping on even rows only, reset odd */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: inherit !important;
  --bs-table-bg-type: inherit !important;
  /* For themes using Highdmin custom props (RTL skins) */
  --highdmin-table-color-type: inherit !important;
  --highdmin-table-bg-type: inherit !important;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-color-type: var(--bs-table-striped-color) !important;
  --bs-table-bg-type: var(--bs-table-striped-bg) !important;
  /* For themes using Highdmin custom props (RTL skins) */
  --highdmin-table-color-type: var(--highdmin-table-striped-color) !important;
  --highdmin-table-bg-type: var(--highdmin-table-striped-bg) !important;
}

