/* =============================================================================
   MindFlows Documentation Site — Shared Stylesheet
   docs/assets/docs-style.css

   Dark theme matching the main MindFlows site (bg-gray-900, Inter font).
   Uses CSS custom properties for easy light-mode toggling.
   ============================================================================= */

/* ---------------------------------------------------------------------------
   0. CUSTOM PROPERTIES
   --------------------------------------------------------------------------- */
:root {
  --docs-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Backgrounds */
  --docs-bg:            #111827; /* gray-900 */
  --docs-bg-secondary:  #1f2937; /* gray-800 */
  --docs-bg-tertiary:   #374151; /* gray-700 */

  /* Borders */
  --docs-border:        #374151; /* gray-700 */
  --docs-border-light:  #4b5563; /* gray-600 */

  /* Text */
  --docs-text:          #ffffff;
  --docs-text-secondary:#d1d5db; /* gray-300 */
  --docs-text-muted:    #9ca3af; /* gray-400 */
  --docs-text-faint:    #6b7280; /* gray-500 */

  /* Brand */
  --docs-orange:        #ff6d5a;
  --docs-orange-hover:  #ff5722;
  --docs-yellow:        #fbbf24;
  --docs-green:         #34d399;
  --docs-green-bg:      rgba(52, 211, 153, 0.1);
  --docs-amber-bg:      rgba(251, 191, 36, 0.1);

  /* Sidebar */
  --docs-sidebar-width: 280px;

  /* Misc */
  --docs-radius:        0.75rem; /* 12px — matches rounded-xl */
  --docs-radius-sm:     0.5rem;
  --docs-shadow:        0 4px 6px -1px rgba(0, 0, 0, 0.3),
                        0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --docs-transition:    150ms ease;
}

/* ---------------------------------------------------------------------------
   1. RESETS & BASE
   --------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.docs-body {
  margin: 0;
  padding: 0;
  font-family: var(--docs-font);
  background: var(--docs-bg);
  color: var(--docs-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------------------------------------------------------
   2. DOCS LAYOUT
   --------------------------------------------------------------------------- */
.docs-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.docs-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--docs-sidebar-width);
  height: 100vh;
  background: var(--docs-bg-secondary);
  border-right: 1px solid var(--docs-border);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 0;
  transition: transform var(--docs-transition);
  scrollbar-width: thin;
  scrollbar-color: var(--docs-border) transparent;
}

.docs-sidebar::-webkit-scrollbar {
  width: 4px;
}
.docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.docs-sidebar::-webkit-scrollbar-thumb {
  background: var(--docs-border);
  border-radius: 2px;
}

/* Sidebar brand / logo area */
.docs-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid var(--docs-border);
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--docs-text);
}

.docs-sidebar-brand img {
  height: 28px;
  width: auto;
}

.docs-sidebar-brand span {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* Main content area */
.docs-main {
  flex: 1;
  margin-left: var(--docs-sidebar-width);
  padding: 2.5rem 3rem;
  max-width: 900px;
  width: 100%;
}

/* Mobile sidebar toggle */
.docs-sidebar-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  width: 40px;
  height: 40px;
  border-radius: var(--docs-radius-sm);
  background: var(--docs-bg-secondary);
  border: 1px solid var(--docs-border);
  color: var(--docs-text);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--docs-transition);
}

.docs-sidebar-toggle:hover {
  background: var(--docs-bg-tertiary);
}

/* Sidebar overlay (mobile) */
.docs-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------------------------
   3. SIDEBAR NAVIGATION
   --------------------------------------------------------------------------- */
.docs-nav-section {
  margin-bottom: 0.25rem;
}

.docs-nav-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--docs-text-muted);
  cursor: pointer;
  user-select: none;
  transition: color var(--docs-transition);
}

.docs-nav-section-title:hover {
  color: var(--docs-text-secondary);
}

.docs-nav-section-title .chevron {
  font-size: 0.625rem;
  transition: transform var(--docs-transition);
}

.docs-nav-section.collapsed .chevron {
  transform: rotate(-90deg);
}

.docs-nav-section.collapsed .docs-nav-links {
  display: none;
}

.docs-nav-links {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
}

.docs-nav-link {
  display: block;
  padding: 0.4rem 1.25rem 0.4rem 1.5rem;
  font-size: 0.875rem;
  color: var(--docs-text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color var(--docs-transition),
              border-color var(--docs-transition),
              background var(--docs-transition);
}

.docs-nav-link:hover {
  color: var(--docs-text);
  background: rgba(255, 255, 255, 0.03);
}

.docs-nav-link.active {
  color: var(--docs-text);
  border-left-color: var(--docs-orange);
  background: rgba(255, 109, 90, 0.08);
  font-weight: 500;
}

/* --- JS-generated sidebar classes (docs-nav.js renderDocsSidebar) --- */

/* Section header button — full-width flex row */
.docs-nav-section-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--docs-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.5rem;
  transition: color var(--docs-transition), background var(--docs-transition);
  font-family: var(--docs-font);
  line-height: 1.4;
}

.docs-nav-section-header:hover {
  color: var(--docs-text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

/* Emoji icon */
.docs-nav-section-icon {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
  width: 1.25rem;
  text-align: center;
}

/* Title text — takes remaining space */
.docs-nav-section-header .docs-nav-section-title {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* Reset any inherited styles from the old .docs-nav-section-title rule */
  display: inline;
  justify-content: initial;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: inherit;
  user-select: inherit;
}

/* Count badge — subtle pill */
.docs-nav-section-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  background: var(--docs-bg-tertiary);
  color: var(--docs-text-faint);
  border-radius: 9999px;
}

/* Chevron arrow */
.docs-nav-chevron {
  flex-shrink: 0;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  transition: transform var(--docs-transition);
}

/* Draw a CSS chevron (right-pointing arrow) */
.docs-nav-chevron::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1.5px solid var(--docs-text-faint);
  border-bottom: 1.5px solid var(--docs-text-faint);
  transform: rotate(-45deg);
  margin-top: 0.0625rem;
}

/* Rotate chevron when expanded */
.docs-nav-section.expanded .docs-nav-chevron::before {
  transform: rotate(45deg);
}

/* Page list (ul) */
.docs-nav-pages {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
}

/* Hide pages when section is collapsed */
.docs-nav-section:not(.expanded) .docs-nav-pages {
  display: none;
}

/* Individual page links */
.docs-nav-pages li {
  margin: 0;
  padding: 0;
}

.docs-nav-pages a {
  display: block;
  padding: 0.375rem 1.25rem 0.375rem 2.75rem;
  font-size: 0.8125rem;
  color: var(--docs-text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color var(--docs-transition),
              border-color var(--docs-transition),
              background var(--docs-transition);
  line-height: 1.4;
}

.docs-nav-pages a:hover {
  color: var(--docs-text);
  background: rgba(255, 255, 255, 0.03);
}

/* Active page link */
.docs-nav-pages a.active {
  color: var(--docs-text);
  border-left-color: var(--docs-orange);
  border-left-width: 3px;
  background: rgba(255, 109, 90, 0.1);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   4. SOP PAGE CONTENT
   --------------------------------------------------------------------------- */
.sop-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--docs-text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.sop-objective {
  font-style: italic;
  color: var(--docs-text-secondary);
  border-left: 3px solid var(--docs-orange);
  padding: 0.625rem 1rem;
  margin: 0 0 2rem;
  background: rgba(255, 109, 90, 0.05);
  border-radius: 0 var(--docs-radius-sm) var(--docs-radius-sm) 0;
  line-height: 1.5;
}

/* Loom / video embed — 16:9 */
.sop-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--docs-radius);
  border: 1px solid var(--docs-border);
  margin-bottom: 2rem;
  background: #000;
}

.sop-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Step block */
.sop-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.sop-step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--docs-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  margin-top: 0.125rem;
}

.sop-step-content {
  flex: 1;
  min-width: 0;
}

.sop-step-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--docs-text);
}

.sop-step-content p {
  margin: 0.25rem 0 0;
  color: var(--docs-text-secondary);
}

/* Timestamp badge */
.sop-timestamp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  background: var(--docs-bg-tertiary);
  color: var(--docs-text-secondary);
  border-radius: 9999px;
  white-space: nowrap;
  vertical-align: middle;
}

.sop-timestamp::before {
  content: '\f017'; /* fa clock */
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 0.65rem;
}

/* Screenshot container */
.sop-screenshot {
  margin: 1rem 0 1.5rem;
  border-radius: var(--docs-radius);
  border: 1px solid var(--docs-border);
  overflow: hidden;
  box-shadow: var(--docs-shadow);
}

.sop-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Callout boxes */
.sop-caution {
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: var(--docs-radius-sm);
  border-left: 3px solid var(--docs-yellow);
  background: var(--docs-amber-bg);
  color: var(--docs-text-secondary);
  font-size: 0.9375rem;
}

.sop-caution strong {
  color: var(--docs-yellow);
}

.sop-tip {
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: var(--docs-radius-sm);
  border-left: 3px solid var(--docs-green);
  background: var(--docs-green-bg);
  color: var(--docs-text-secondary);
  font-size: 0.9375rem;
}

.sop-tip strong {
  color: var(--docs-green);
}

/* Prev / Next navigation (JS-generated via docs-nav.js) */
.docs-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--docs-border);
}

.docs-prev-next a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--docs-radius-sm);
  border: 1px solid var(--docs-border);
  text-decoration: none;
  color: var(--docs-text-secondary);
  font-size: 0.875rem;
  transition: border-color var(--docs-transition),
              color var(--docs-transition),
              background var(--docs-transition);
  max-width: 48%;
  min-width: 0;
}

.docs-prev-next a:hover {
  border-color: var(--docs-orange);
  color: var(--docs-text);
  background: rgba(255, 109, 90, 0.05);
}

.docs-prev-next-label {
  font-size: 0.75rem;
  color: var(--docs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.docs-prev-next-title {
  font-weight: 500;
  color: var(--docs-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.docs-prev-next .docs-next {
  margin-left: auto;
  text-align: right;
}

.docs-prev-next .docs-prev-next-placeholder {
  visibility: hidden;
}

/* Legacy .sop-prev-next alias (kept for any hardcoded pages) */
.sop-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--docs-border);
}

.sop-prev-next a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  border-radius: var(--docs-radius-sm);
  border: 1px solid var(--docs-border);
  text-decoration: none;
  color: var(--docs-text-secondary);
  font-size: 0.875rem;
  transition: border-color var(--docs-transition),
              color var(--docs-transition);
  max-width: 48%;
}

.sop-prev-next a:hover {
  border-color: var(--docs-orange);
  color: var(--docs-text);
}

.sop-prev-next a .label {
  font-size: 0.75rem;
  color: var(--docs-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sop-prev-next a.next {
  margin-left: auto;
  text-align: right;
}

/* ---------------------------------------------------------------------------
   5. INDEX / HERO PAGE
   --------------------------------------------------------------------------- */
.docs-hero {
  text-align: center;
  padding: 3.5rem 2rem 2.5rem;
  background: linear-gradient(180deg, var(--docs-bg) 0%, var(--docs-bg-secondary) 100%);
  border-bottom: 1px solid var(--docs-border);
  margin: -2.5rem -3rem 2.5rem;
}

.docs-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--docs-text);
}

.docs-hero p {
  font-size: 1.125rem;
  color: var(--docs-text-secondary);
  margin: 0 auto;
  max-width: 540px;
}

/* Search */
.docs-search {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 1.5rem auto 0;
  background: var(--docs-bg);
  border: 1px solid var(--docs-border);
  border-radius: 9999px;
  overflow: hidden;
  transition: border-color var(--docs-transition);
}

.docs-search:focus-within {
  border-color: var(--docs-orange);
}

.docs-search .search-icon {
  padding: 0 0 0 1rem;
  color: var(--docs-text-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.docs-search input {
  flex: 1;
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--docs-text);
  font-size: 0.9375rem;
  font-family: var(--docs-font);
}

.docs-search input::placeholder {
  color: var(--docs-text-faint);
}

/* Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card */
.docs-card {
  display: flex;
  flex-direction: column;
  background: var(--docs-bg-secondary);
  border: 1px solid var(--docs-border);
  border-radius: var(--docs-radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--docs-text);
  transition: transform var(--docs-transition),
              border-color var(--docs-transition),
              box-shadow var(--docs-transition);
}

.docs-card:hover {
  transform: translateY(-2px);
  border-color: var(--docs-orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.docs-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.docs-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.docs-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--docs-text-secondary);
  flex: 1;
}

.docs-card-count {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--docs-bg-tertiary);
  color: var(--docs-text-muted);
  border-radius: 9999px;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------------
   6. LIGHT MODE
   --------------------------------------------------------------------------- */
.light-mode {
  --docs-bg:            #ffffff;
  --docs-bg-secondary:  #f9fafb;  /* gray-50 */
  --docs-bg-tertiary:   #f3f4f6;  /* gray-100 */
  --docs-border:        #e5e7eb;  /* gray-200 */
  --docs-border-light:  #d1d5db;  /* gray-300 */
  --docs-text:          #111827;  /* gray-900 */
  --docs-text-secondary:#374151;  /* gray-700 */
  --docs-text-muted:    #6b7280;  /* gray-500 */
  --docs-text-faint:    #9ca3af;  /* gray-400 */
  --docs-shadow:        0 4px 6px -1px rgba(0, 0, 0, 0.08),
                        0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --docs-green-bg:      rgba(16, 185, 129, 0.08);
  --docs-amber-bg:      rgba(245, 158, 11, 0.08);
}

/* ---------------------------------------------------------------------------
   7. RESPONSIVE
   --------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .docs-main {
    padding: 2rem 2rem;
  }

  .docs-hero {
    margin: -2rem -2rem 2rem;
    padding: 2.5rem 1.5rem 2rem;
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .docs-sidebar {
    transform: translateX(-100%);
  }

  .docs-sidebar.open {
    transform: translateX(0);
  }

  .docs-sidebar-overlay.open {
    display: block;
  }

  .docs-sidebar-toggle {
    display: flex;
  }

  .docs-main {
    margin-left: 0;
    padding: 4rem 1.25rem 2rem;
    max-width: 100%;
  }

  .docs-hero {
    margin: -4rem -1.25rem 1.5rem;
    padding: 4.5rem 1.25rem 2rem;
  }

  .docs-hero h1 {
    font-size: 1.625rem;
  }

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .sop-title {
    font-size: 1.5rem;
  }

  .sop-step {
    flex-direction: column;
    gap: 0.5rem;
  }

  .docs-prev-next,
  .sop-prev-next {
    flex-direction: column;
  }

  .docs-prev-next a,
  .sop-prev-next a {
    max-width: 100%;
  }

  .docs-prev-next .docs-next,
  .sop-prev-next a.next {
    text-align: left;
  }
}

/* ---------------------------------------------------------------------------
   8. UTILITIES
   --------------------------------------------------------------------------- */

/* Breadcrumb */
.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  color: var(--docs-text-muted);
}

.docs-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.docs-breadcrumb li + li::before {
  content: '/';
  color: var(--docs-border-light);
}

.docs-breadcrumb a {
  color: var(--docs-text-muted);
  text-decoration: none;
  transition: color var(--docs-transition);
}

.docs-breadcrumb a:hover {
  color: var(--docs-text);
}

.docs-breadcrumb .current {
  color: var(--docs-text-secondary);
}

/* Badge */
.docs-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  line-height: 1.5;
}

.docs-badge.new {
  background: rgba(255, 109, 90, 0.15);
  color: var(--docs-orange);
}

.docs-badge.popular {
  background: rgba(251, 191, 36, 0.15);
  color: var(--docs-yellow);
}

.docs-badge.updated {
  background: rgba(52, 211, 153, 0.15);
  color: var(--docs-green);
}

/* Code blocks */
.docs-code {
  display: block;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  background: var(--docs-bg);
  border: 1px solid var(--docs-border);
  border-radius: var(--docs-radius-sm);
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  font-size: 0.8125rem;
  color: var(--docs-text-secondary);
  overflow-x: auto;
  line-height: 1.6;
  white-space: pre;
}

code {
  padding: 0.15rem 0.35rem;
  font-size: 0.8125em;
  background: var(--docs-bg-tertiary);
  border-radius: 4px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

/* Prose helpers */
.docs-main h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--docs-text);
}

.docs-main h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--docs-text);
}

.docs-main p {
  margin: 0.5rem 0 1rem;
  color: var(--docs-text-secondary);
}

.docs-main ul,
.docs-main ol {
  padding-left: 1.25rem;
  color: var(--docs-text-secondary);
  margin: 0.5rem 0 1rem;
}

.docs-main li {
  margin-bottom: 0.35rem;
}

.docs-main a {
  color: var(--docs-orange);
  text-decoration: none;
  transition: color var(--docs-transition);
}

.docs-main a:hover {
  color: var(--docs-text);
}

/* Divider */
.docs-divider {
  border: none;
  border-top: 1px solid var(--docs-border);
  margin: 2rem 0;
}

/* Selection */
::selection {
  background: rgba(255, 109, 90, 0.3);
  color: var(--docs-text);
}
