/* ============================================================
   QUICK-REFERENCE.CSS — Quick Reference Tables styling
   Inherits: theme.css, layout.css, nav.css
   ============================================================ */

.ref-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

.ref-container h1 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 32px;
}

.subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.ref-section {
  margin-bottom: 40px;
}

.ref-section h2 {
  font-size: 20px;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.ref-table thead {
  background: var(--table-header-bg);
}

.ref-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}

.ref-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}

.ref-table tbody tr:hover {
  background: var(--table-row-hover);
}

@media (max-width: 768px) {
  .ref-container {
    padding: 16px;
  }

  .ref-table {
    font-size: 14px;
  }

  .ref-table th, .ref-table td {
    padding: 8px;
  }
}
