:root {
  --docs-gutter: 1rem;
  --ifm-navbar-link-hover-color: initial;
  --ifm-navbar-padding-vertical: 0;
  --ifm-global-radius: 10px;
  --ifm-code-border-radius: 4px;
  --ifm-code-padding-horizontal: 0.2em;
  --ifm-navbar-item-padding-vertical: 0;
  --ifm-font-family-base: "Geist", Inter, -apple-system, BlinkMacSystemFont,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI emoji";
  --ifm-font-family-monospace: "JetBrains Mono", "Geist Mono", "SFMono-Regular",
    Consolas, "Liberation Mono", Menlo, monospace;
  --ifm-heading-font-weight: 700;
  --ifm-line-height-base: 1.7;
}

/* Light theme - Pure white background */
html[data-theme="light"] {
  --ifm-color-primary: #d11074; /* Lightest brand-hue pink passing WCAG AA on white (5.2:1) and inline-code bg #eeeef5 (4.5:1) */
  --ifm-background-color: var(--ifm-color-white);
  --ifm-background-surface-color: var(--ifm-color-white);
  --ifm-code-background: #eeeef5;
}

/* Dark theme - Slate dark background (Langfuse style) */
html[data-theme="dark"] {
  --ifm-code-background: #1e1e24;
  --ifm-color-primary: #f471b5; /* Langflow pink — same as API spec */
  --ifm-background-color: #111; /* Warm slate, not pure black */
  --ifm-background-surface-color: #111;
  --ifm-card-background-color: #232328;
  --ifm-card-border-color: #303038;
  --ifm-font-color-base: #bcbcc4; /* Soft gray text */
  --ifm-heading-color: #dcdce2; /* Headings: brighter but still muted */
  --ifm-color-emphasis-600: #777;
  --ifm-color-emphasis-700: #8a8a90;
  --ifm-menu-color: #9c9ca4; /* Sidebar text: muted slate */
  --ifm-toc-border-color: #2c2c32;
  --ifm-navbar-background-color: #111;
}
