/**
 * @file
 * Last resort for css that doesn't want to compile in SASS. This is frowned
 * upon in general.
 */
body table > tbody tr {
  background: hsla(0 0% 100% / 20%);
}
body table > tbody tr:nth-child(2n) {
  background: hsl(210deg 50% 50% / 5%);
}
body table > tbody tr:hover, body table > tbody tr:nth-child(2n):hover {
  background: hsl(230deg 69% 50% / 5%);
}