/* Basic layout and readable tables */
body {
  font-family: Inter, Roboto, Arial, sans-serif;
  background: #f7fafc;
  color: #111827;
  margin: 0;
  padding: 1rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16,24,40,0.06);
}
h1 { margin-top: 0; }
.meta p { margin: 0.2rem 0; color: #374151; }
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.grid .wide { grid-column: 1 / -1; }
table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
table.striped tbody tr:nth-child(odd) { background: #fbfcfe; }
table th, table td {
  text-align: left;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid #e6eef6;
  vertical-align: top;
  font-size: 0.95rem;
}
table.compact th, table.compact td { padding: 0.3rem 0.5rem; font-size: 0.9rem; }
.file-block { border: 1px solid #eef2f7; padding: 0.6rem; border-radius: 6px; margin-bottom: 0.8rem; background: #ffffff; }
code { background: #f1f5f9; padding: 0.15rem 0.3rem; border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace; }
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
}