/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 3rem 2.5rem; }
}

/* --- Header --- */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

/* --- Hero --- */
.hero {
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: #64748b;
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

/* --- Content area --- */
.content-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* --- Endpoints --- */
.endpoint-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.15s;
}

.endpoint-row:hover {
  background: #f1f5f9;
}

.endpoint-row:last-of-type {
  margin-bottom: 0;
}

.endpoint-method {
  flex-shrink: 0;
}

.endpoint-path {
  font-family: 'SF Mono', 'Fira Code', Menlo, Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 500;
}

.endpoint-desc {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.375rem;
  padding-left: 3.5rem;
  margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid #e2e8f0;
  padding: 1.5rem;
  text-align: center;
}
