
body {
    background: #f9fafb;
    color: #1f2937;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif;
    margin: 0;
  }
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
  }
  h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
  }
  h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
  }
  p, ul {
    color: #4b5563;
    margin-bottom: 2rem;
  }
  section {
    margin-bottom: 2.5rem;
  }
  .endpoint-box {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
  }
  .http-method {
    font-family: monospace;
    font-weight: 700;
    color: #1e40af;
    margin-right: 0.5rem;
  }
  .endpoint {
    font-family: monospace;
    color: #2563eb;
  }
  .header-label {
    font-weight: 700;
  }
  .header-value {
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-family: monospace;
    font-size: 0.95em;
    color: #334155;
  }
  .header-key {
    color: #64748b;
  }
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 #0001;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  thead tr {
    background: #dbeafe;
  }
  th, td {
    padding: 0.5rem 0.75rem;
    text-align: left;
  }
  th {
    font-weight: 600;
    font-size: 1em;
  }
  td {
    font-size: 0.97em;
  }
  .font-mono {
    font-family: monospace;
  }
  .text-center {
    text-align: center;
  }
  .rounded {
    border-radius: 0.5rem;
  }
  pre, code {
    font-family: "Fira Mono", "Consolas", "Monaco", monospace;
    font-size: 0.97em;
  }
  pre {
    background: #1a202c;
    color: #bbf7d0;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1em;
  }
  .response-box {
    background: #f3f4f6;
    color: #1f2937;
    border-radius: 0.5rem;
    padding: 1em;
    font-size: 0.97em;
  }
  .error-list {
    color: #dc2626;
    margin-left: 1.2em;
  }
  .error-list span {
    color: #1f2937;
  }
  /* Responsive styles */
  @media (max-width: 640px) {
    .container {
      padding: 1.5rem 0.5rem;
    }
    table, thead, tbody, th, td, tr {
      display: block;
    }
    th, td {
      padding: 0.4rem 0.4rem;
    }
    th {
      background: #dbeafe;
    }
    tr {
      margin-bottom: 0.75rem;
    }
    td {
      border-bottom: 1px solid #e5e7eb;
    }
  }