/* ReasonKit Docs Custom Styles */
/* Additional styling to match main site branding */

/* Ensure nav doesn't overlap content */
#mdbook-page-wrapper {
  margin-top: 60px;
}

/* Dark theme adjustments to match main site */
html.ayu {
  --bg-primary: #030508;
  --bg-secondary: #0a0d14;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --accent-cyan: #06b6d4;
  --accent-purple: #a855f7;
}

/* Code block styling to match main site */
pre {
  background: #0a0d14 !important;
  border: 1px solid rgba(75, 85, 99, 0.3) !important;
}

/* Link colors to match main site */
.content a {
  color: #06b6d4;
  transition: color 0.2s;
}

.content a:hover {
  color: #a855f7;
}

/* Ensure proper spacing */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

