:root {
      --zebra-color-odd: black;
      --zebra-color-even: black;
      --instructions-background: var(--green-400);
      --instructions-color: black;
      --zebra-background-odd: var(--bluegray-100);
      --zebra-background-even: var(--bluegray-200);
       --progress-bar-label: white;
}

body {
      background: var(--heading-background);
}

.zebra-striped tbody tr:nth-child(odd) td, .zebra-striped tbody tr:nth-child(odd) th {
      background: var(--zebra-background-odd);
      color: var(--zebra-color-odd);
}

.zebra-striped tbody tr:nth-child(even) td, .zebra-striped tbody tr:nth-child(even) th {
      background: var(--zebra-background-even);
      color: var(--zebra-color-even);
}