:root {
  --planetarium-table-border: rgba(0, 0, 0, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --planetarium-table-border: rgba(255, 255, 255, 0.2);
  }
}

article table {
  display: inline-block;
  width: auto;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--planetarium-table-border);
  border-radius: 4px;
  margin-left: 0;
  margin-right: auto;
}

article table thead,
article table tbody,
article table tr {
  width: 100%;
}

article table th,
article table td {
  white-space: nowrap;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--planetarium-table-border);
  border-right: 1px solid var(--planetarium-table-border);
}

article table + table {
  margin-top: 1.5rem;
}

article table th:last-child,
article table td:last-child {
  border-right: none;
}

article table tbody tr:last-child td {
  border-bottom: none;
}
