/* ============================================================================
   SYNTHWAR DOCS STYLESHEET
   Self-contained — includes only the design tokens needed from main site.
   Does NOT @import style.css to avoid landing-page section/animation conflicts.
   ============================================================================ */

/* === Design Tokens (mirrored from style.css) === */
:root {
    --black: #0A0A0F;
    --green: #00FF88;
    --red: #FF3344;
    --blue: #1A73E8;
    --gray: #2A2A3E;
    --white: #F0F0F5;
    --green-dim: rgba(0, 255, 136, 0.15);
    --red-dim: rgba(255, 51, 68, 0.15);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --content-max: 1100px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
.mono { font-family: var(--font-mono); }
.green { color: var(--green); }
.red { color: var(--red); }

/* === Navigation === */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0.8rem 1.5rem;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 1px 0 var(--gray);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}
.nav-logo:hover { color: var(--green); text-decoration: none; }
.nav-cta-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-cta-btn:hover { background: var(--green); color: var(--black); text-decoration: none; }

/* === Footer === */
#footer {
    background: rgba(42, 42, 62, 0.15);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--gray);
}
.footer-inner { text-align: center; }
.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(240, 240, 245, 0.3);
    margin-bottom: 0;
}

/* ============================================================================
   DOCS LAYOUT — Two-column desktop, mobile drawer
   ============================================================================ */

.docs-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--black);
}

/* ============================================================================
   SIDEBAR — Fixed left navigation
   ============================================================================ */

.docs-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background-color: rgba(10, 10, 15, 0.98);
  border-right: 1px solid var(--gray);
  padding-top: 60px;
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Sidebar header (the div inside sidebar) */
.docs-sidebar-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(42, 42, 62, 0.3);
  margin-bottom: 0.5rem;
}

.docs-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
}

/* --- Docs Search --- */
.docs-search {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray);
  position: relative;
}
.docs-search-input {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 2.1rem;
  background: rgba(42, 42, 62, 0.4);
  border: 1px solid var(--gray);
  border-radius: 5px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.docs-search-input::placeholder {
  color: rgba(240, 240, 245, 0.35);
}
.docs-search-input:focus {
  border-color: var(--green);
  background: rgba(42, 42, 62, 0.6);
}
.docs-search-icon {
  position: absolute;
  left: 1.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  pointer-events: none;
  color: rgba(240, 240, 245, 0.35);
}
.docs-search-input:focus ~ .docs-search-icon {
  color: var(--green);
}
.docs-search-kbd {
  position: absolute;
  right: 1.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(240, 240, 245, 0.3);
  border: 1px solid rgba(240, 240, 245, 0.15);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  line-height: 1.3;
  pointer-events: none;
}
.docs-search-results {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% - 0.25rem);
  background: rgba(10, 10, 15, 0.97);
  border: 1px solid var(--gray);
  border-radius: 5px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.docs-search-results.open {
  display: block;
}
.docs-search-result {
  display: block;
  padding: 0.6rem 0.75rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 42, 62, 0.5);
  transition: background 0.15s ease;
}
.docs-search-result:last-child {
  border-bottom: none;
}
.docs-search-result:hover,
.docs-search-result.active {
  background: rgba(0, 255, 136, 0.08);
}
.docs-search-result-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.docs-search-result:hover .docs-search-result-title,
.docs-search-result.active .docs-search-result-title {
  color: var(--green);
}
.docs-search-result-desc {
  font-size: 0.75rem;
  color: rgba(240, 240, 245, 0.5);
  line-height: 1.4;
}
.docs-search-empty {
  padding: 0.75rem;
  font-size: 0.8rem;
  color: rgba(240, 240, 245, 0.4);
  text-align: center;
}

.docs-nav {
  padding: 0;
  margin: 0;
}

.docs-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Section headers inside the sidebar nav (li.docs-nav-section) */
li.docs-nav-section {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 240, 245, 0.4);
  padding: 1.2rem 1.5rem 0.4rem;
  margin: 0;
  cursor: default;
}

.docs-nav a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.6);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  word-wrap: break-word;
}

.docs-nav a:hover {
  color: var(--white);
  background-color: rgba(0, 255, 136, 0.02);
}

.docs-nav a.active {
  color: var(--green);
  border-left-color: var(--green);
  background-color: rgba(0, 255, 136, 0.05);
}

/* Sidebar scrollbar styling */
.docs-sidebar::-webkit-scrollbar {
  width: 6px;
}

.docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.docs-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.3);
  border-radius: 3px;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 136, 0.5);
}

/* ============================================================================
   MOBILE MENU BUTTON
   ============================================================================ */

.docs-menu-btn {
  display: none;
  position: fixed;
  top: 75px;
  left: 1rem;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--gray);
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.2s ease;
}

.docs-menu-btn:hover {
  background-color: rgba(0, 255, 136, 0.15);
}

.docs-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--green);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.docs-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.docs-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.docs-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================================
   DOCS OVERLAY (Mobile)
   ============================================================================ */

.docs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 15, 0.7);
  z-index: 999;
}

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

/* ============================================================================
   CONTENT AREA
   ============================================================================ */

.docs-content {
  margin-left: 260px;
  flex: 1;
  padding-top: 80px;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  min-height: 100vh;
}

.docs-content > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   DOCS HERO IMAGE
   ============================================================================ */

.docs-hero-img {
  width: 100%;
  max-width: 800px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--gray);
  margin-bottom: 2rem;
  display: block;
}

/* ============================================================================
   TYPOGRAPHY — Article content
   ============================================================================ */

.docs-content article h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.docs-content article h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray);
  letter-spacing: -0.01em;
}

.docs-content article h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--green);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.docs-content article h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.docs-content article p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 240, 245, 0.85);
  margin-bottom: 1.2rem;
}

.docs-content article strong {
  color: var(--white);
  font-weight: 600;
}

.docs-content article em {
  color: rgba(240, 240, 245, 0.9);
  font-style: italic;
}

/* ============================================================================
   LISTS
   ============================================================================ */

.docs-content article ul,
.docs-content article ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.docs-content article li {
  margin-bottom: 0.5rem;
  color: rgba(240, 240, 245, 0.8);
  line-height: 1.6;
}

.docs-content article ul li::marker {
  color: var(--green);
}

.docs-content article ol li::marker {
  color: var(--green);
}

/* ============================================================================
   CODE BLOCKS & INLINE CODE
   ============================================================================ */

.docs-code,
.docs-content article pre {
  background-color: rgba(42, 42, 62, 0.4);
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  overflow-x: auto;
  color: var(--green);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.docs-code code,
.docs-content article pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--green);
  font-size: 0.85rem;
}

.docs-content article code {
  background-color: rgba(42, 42, 62, 0.5);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.88em;
  color: var(--green);
}

/* ============================================================================
   CALLOUT BOXES
   ============================================================================ */

.docs-callout {
  border-left: 3px solid var(--green);
  padding: 1rem 1.5rem;
  background-color: rgba(0, 255, 136, 0.04);
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.2rem;
}

.docs-callout p {
  margin-bottom: 0;
}

.docs-callout p:last-child {
  margin-bottom: 0;
}

.docs-callout strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.docs-callout.warning {
  border-left-color: var(--red);
  background-color: rgba(255, 51, 68, 0.04);
}

.docs-callout.warning strong {
  color: var(--red);
}

.docs-callout.info {
  border-left-color: var(--blue);
  background-color: rgba(26, 115, 232, 0.04);
}

.docs-callout.info strong {
  color: var(--blue);
}

/* ============================================================================
   TABLES
   ============================================================================ */

.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2rem;
  overflow-x: auto;
  display: block;
}

.docs-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.2rem;
}

.docs-table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240, 240, 245, 0.5);
  border-bottom: 1px solid var(--gray);
  padding: 0.7rem;
  text-align: left;
}

.docs-table td {
  padding: 0.7rem;
  border-bottom: 1px solid rgba(42, 42, 62, 0.4);
  color: rgba(240, 240, 245, 0.85);
}

.docs-table tr:nth-child(even) {
  background-color: rgba(42, 42, 62, 0.15);
}

.docs-table tr:hover {
  background-color: rgba(0, 255, 136, 0.03);
}

/* ============================================================================
   FAQ ACCORDION
   ============================================================================ */

.docs-faq-item {
    border: 1px solid var(--gray);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    background: rgba(42, 42, 62, 0.15);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.docs-faq-item:hover {
    border-color: rgba(240, 240, 245, 0.2);
}
.docs-faq-item[open] {
    border-color: var(--green);
    background: rgba(0, 255, 136, 0.04);
}
.docs-faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.docs-faq-item summary::-webkit-details-marker {
    display: none;
}
.docs-faq-item summary::before {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--gray);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: rgba(240, 240, 245, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.docs-faq-item[open] summary::before {
    content: '−';
    color: var(--green);
    border-color: var(--green);
    background: rgba(0, 255, 136, 0.1);
}
.docs-faq-item summary:hover::before {
    border-color: rgba(240, 240, 245, 0.4);
    color: var(--white);
}
.docs-faq-item[open] summary:hover::before {
    border-color: var(--green);
    color: var(--green);
}
.docs-faq-item p {
    padding: 0 1.25rem 1rem 3rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(240, 240, 245, 0.75);
}

/* ============================================================================
   PAGINATION
   ============================================================================ */

.docs-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
  max-width: 800px;
}

.docs-pagination a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(240, 240, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.docs-pagination a:hover {
  color: var(--green);
}

.docs-pagination a.prev::before {
  content: '← ';
  margin-right: 0.5rem;
}

.docs-pagination a.next::after {
  content: ' →';
  margin-left: 0.5rem;
}

.docs-pagination a:disabled,
.docs-pagination a.disabled {
  color: rgba(240, 240, 245, 0.3);
  cursor: not-allowed;
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.6);
}

.docs-breadcrumb a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.docs-breadcrumb span {
  color: rgba(240, 240, 245, 0.4);
}

/* ============================================================================
   RESPONSIVE — Tablet (1024px and above)
   ============================================================================ */

@media (max-width: 1024px) {
  .docs-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ============================================================================
   RESPONSIVE — Mobile (<768px)
   ============================================================================ */

@media (max-width: 768px) {
  .docs-layout {
    flex-direction: column;
  }

  .docs-sidebar {
    position: fixed;
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .docs-menu-btn {
    display: flex;
  }

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

  .docs-content {
    margin-left: 0;
    padding-top: 120px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
  }

  .docs-content > * {
    max-width: 100%;
  }

  .docs-pagination {
    flex-direction: column;
    gap: 1rem;
  }

  .docs-pagination a {
    text-align: center;
    display: block;
    width: 100%;
  }

  .docs-pagination a.prev {
    order: -1;
  }

  .docs-table {
    font-size: 0.9rem;
  }

  .docs-table th,
  .docs-table td {
    padding: 0.5rem;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.docs-divider {
  height: 1px;
  background-color: var(--gray);
  margin: 2rem 0;
}

.docs-spacing-sm {
  margin-bottom: 0.5rem;
}

.docs-spacing-md {
  margin-bottom: 1rem;
}

.docs-spacing-lg {
  margin-bottom: 2rem;
}

.docs-text-muted {
  color: rgba(240, 240, 245, 0.5);
  font-size: 0.9rem;
}

.docs-text-highlight {
  color: var(--green);
  font-weight: 600;
}

.docs-text-warning {
  color: var(--red);
  font-weight: 600;
}

.docs-text-info {
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================================
   ANCHOR LINKS
   ============================================================================ */

.docs-content article a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.docs-content article a:hover {
  color: var(--white);
  border-bottom-color: var(--green);
}

/* ============================================================================
   EMPHASIS & SPECIAL TEXT
   ============================================================================ */

.docs-content article blockquote {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
  margin-left: 0;
  margin-bottom: 1.2rem;
  color: rgba(240, 240, 245, 0.75);
  font-style: italic;
}

/* ============================================================================
   BACK TO TOP BUTTON
   ============================================================================ */

.docs-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100;
}

.docs-back-to-top:hover {
  background-color: rgba(0, 255, 136, 0.2);
  color: var(--white);
}

.docs-back-to-top.visible {
  display: flex;
}

@media (max-width: 768px) {
  .docs-back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* (Search styles defined above in Docs Search section) */

/* ============================================================================
   TABLE OF CONTENTS (In-page)
   ============================================================================ */

.docs-toc {
  background-color: rgba(42, 42, 62, 0.2);
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.docs-toc-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 1rem;
}

.docs-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.docs-toc li {
  margin-bottom: 0.5rem;
}

.docs-toc a {
  color: rgba(240, 240, 245, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.docs-toc a:hover {
  color: var(--green);
}

.docs-toc li.active > a {
  color: var(--green);
  font-weight: 600;
}

/* ============================================================================
   IMAGE GALLERY
   ============================================================================ */

.docs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.docs-gallery-item {
  border: 1px solid var(--gray);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.docs-gallery-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.docs-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.docs-gallery-item-caption {
  padding: 1rem;
  background-color: rgba(42, 42, 62, 0.2);
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.7);
}

/* ============================================================================
   DEFINITION LIST
   ============================================================================ */

.docs-content article dt {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.docs-content article dd {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(240, 240, 245, 0.8);
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
  .docs-sidebar,
  .docs-menu-btn,
  .docs-overlay,
  .docs-pagination,
  .docs-back-to-top {
    display: none;
  }

  .docs-layout {
    flex-direction: column;
  }

  .docs-content {
    margin-left: 0;
    padding-top: 0;
  }

  .docs-content article {
    max-width: 100%;
  }
}
