body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
}

.chapter-index {
  background: #f5f5f5;
  padding: 0.75rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.chapter-index a {
  margin-right: 0.5rem;
  text-decoration: none;
}

.commentary {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #fffbe6;
  border-left: 5px solid #d4aa00;
}

.commentary h2 {
  margin-top: 0;
}

.commentary h3 {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.container {
  max-width: 1000px;
  background: white;
  margin: 30px auto;
  padding: 40px;
  min-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Chapter Next/Previous nav (match Genesis nav styling, but scoped) */
.chapter-nav {
  background: #34495e;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  margin-top: 2rem;
  border-radius: 6px; /* optional; Genesis didn't have this, remove if you want exact */
}

.chapter-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
}

.chapter-nav a:hover {
  background-color: #4a6278;
}

