:root {
  color-scheme: light dark;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0 1rem;
  max-width: 640px;
  margin-inline: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

a,
button,
input,
select,
summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 640px) {
  table {
    display: table;
  }

  table thead,
  table tbody,
  table tr,
  table th,
  table td {
    display: revert;
  }
}

@media (max-width: 639px) {
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid currentColor;
  }
}
