/* Swiftward Website Styles */

:root {
  color-scheme: light dark;
  --diagram-box-fill: #f1f5f9;
  --diagram-box-stroke: #cbd5e1;
  --diagram-text: #475569;
  --diagram-arrow: #64748b;
}

.dark {
  --diagram-box-fill: #1e293b;
  --diagram-box-stroke: #475569;
  --diagram-text: #cbd5e1;
  --diagram-arrow: #94a3b8;
}

/* Compensate for sticky header when scrolling to anchors */
html {
  scroll-padding-top: 5rem; /* ~80px for header height */
}

