/* --------------------------------
   Base Typography
-------------------------------- */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4 {
  font-weight: 600;
  color: #002347;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

h2 {
  font-size: 24px;
  margin-top: 32px;
}

h3 {
  font-size: 18px;
  margin-top: 24px;
}

/* --------------------------------
   Links
-------------------------------- */

a {
  color: #00A1E1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------
   Layout / Spacing
-------------------------------- */

.docs-content {
  max-width: 760px;
  margin: 0 auto;
}

p {
  margin-bottom: 16px;
}

/* Lists */
ul, ol {
  margin: 16px 0;
  padding-left: 20px;
}

/* --------------------------------
   Buttons / Highlights
-------------------------------- */

/* Primary buttons */
.button, .btn {
  background-color: #002347;
  border-radius: 6px;
  padding: 10px 16px;
}

.button:hover, .btn:hover {
  background-color: #001a36;
}

/* Highlight boxes */
blockquote {
  border-left: 4px solid #00A1E1;
  background: #f5fbff;
  padding: 12px 16px;
  border-radius: 4px;
}

/* --------------------------------
   Code Blocks
-------------------------------- */

code {
  background: #f4f6f8;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 14px;
}

pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
}

/* --------------------------------
   Tables (if used)
-------------------------------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

th {
  background: #f4f6f8;
  text-align: left;
  padding: 10px;
}

td {
  padding: 10px;
  border-top: 1px solid #e5e7eb;
}

/* --------------------------------
   Subtle Dividers
-------------------------------- */

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}

/* --------------------------------
   Sidebar (if supported)
-------------------------------- */

.docs-sidebar {
  font-size: 14px;
}

.docs-sidebar a {
  color: #002347;
}

.docs-sidebar a.active {
  color: #00A1E1;
  font-weight: 600;
}