html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"] table,
html[data-theme="light"] table tr,
html[data-theme="light"] table th,
html[data-theme="light"] table td {
  color: #404040;
}

html[data-theme="light"] table tr,
html[data-theme="light"] table tr:nth-child(2n) {
  background-color: transparent;
}

html[data-theme="dark"] table,
html[data-theme="dark"] table tr,
html[data-theme="dark"] table th,
html[data-theme="dark"] table td {
  color: #e4e6eb;
}

html[data-theme="light"] font[color="#7FFFD4"] {
  color: #006b6b;
}

html[data-theme="light"] font[color="violet"] {
  color: #762a83;
}

.theme-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: center;
  min-height: 2.5rem;
  min-width: 2.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.theme-toggle[hidden] {
  display: none !important;
}

.theme-toggle-icon {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-0.0625rem);
}

.theme-toggle:focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (max-width: 1199px) {
  .theme-toggle {
    justify-content: flex-start;
    width: 100%;
  }
}
