body {
  font-family: system-ui, sans-serif;
  max-width: 1000px; /* wider for better table rendering */
  margin: 2rem auto;
  line-height: 1.6;
  padding: 0 1rem;
  background: #fafafa;
  color: #333;
}

h1, h2, h3 {
  color: #2c3e50;
}

a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

th {
  background: #f4f6f8;
  font-weight: 600;
  color: #2c3e50;
}

tr:hover {
  background: #f9f9f9;
}

caption {
  caption-side: top;
  text-align: left;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

