
/* Base fonts & text */
body, .doc-body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Container centering */
.doc-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

/* Headings */
.doc-body h1 { font-size: 2.25rem; font-weight: 700; margin-top: 2rem; }
.doc-body h2 { font-size: 1.75rem; font-weight: 600; margin-top: 1.75rem; }
.doc-body h3 { font-size: 1.375rem; font-weight: 500; margin-top: 1.5rem; }

/* Links */
.doc-body a {
  color: #0066cc;
  text-decoration: none;
}
.doc-body a:hover {
  color: #005bb5;
  text-decoration: underline;
}

/* Paragraphs & sections */
.doc-body p { margin: 1rem 0; }
.doc-body > * + * { margin-top: 1.5rem; }

/* Code blocks */
.doc-body pre, 
.doc-body code {
  font-family: Menlo, Consolas, 'Courier New', monospace;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
}

/* Info & warning callouts */
.doc-body blockquote.info {
  background: #e6f7ff;
  border-left: 4px solid #91d5ff;
  padding: 1rem;
  border-radius: 4px;
}
.doc-body blockquote.warning {
  background: #fffbe6;
  border-left: 4px solid #ffe58f;
  padding: 1rem;
  border-radius: 4px;
}

/* Buttons */
.doc-body .button {
  display: inline-block;
  background: #0066cc;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
}
.doc-body .button:hover {
  background: #005bb5;
}

/* Images */
.doc-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Tables */
.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.doc-body th, .doc-body td {
  padding: 0.75rem;
  border-top: 1px solid #ddd;
}
.doc-body tr:nth-child(even) {
  background: #f9f9f9;
}
.doc-body th {
  background: #f0f0f0;
}
