/* ========== TimeSeek Docs Theme ========== */
:root {
  --docs-sidebar-width: 280px;
  --docs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --docs-mono-font: "Fira Code", "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace;
  --docs-bg: #f8fafc;
  --docs-sidebar-bg: #0f172a;
  --docs-sidebar-text: #94a3b8;
  --docs-sidebar-hover: #e2e8f0;
  --docs-sidebar-active: #eebb4d;
  --docs-sidebar-active-bg: rgba(238, 187, 77, 0.08);
  --docs-content-max: 860px;
  --docs-border: #e2e8f0;
  --docs-text: #1e293b;
  --docs-text-secondary: #64748b;
  --docs-text-tertiary: #94a3b8;
  --docs-code-bg: #f1f5f9;
  --docs-accent: #1e6f5c;
  --docs-link: #2563eb;
  --docs-link-hover: #1d4ed8;
  --docs-card-bg: #ffffff;
  --docs-tip-bg: #f0fdf4;
  --docs-tip-border: #22c55e;
  --docs-warn-bg: #fef2f2;
  --docs-warn-border: #ef4444;
  --docs-info-bg: #eff6ff;
  --docs-info-border: #3b82f6;
  --docs-table-header-bg: #f1f5f9;
  --docs-h1-color: #0f172a;
  --docs-h2-border: #e2e8f0;
  --docs-sidebar-header-border: rgba(255,255,255,0.06);
  --docs-sidebar-footer-border: rgba(255,255,255,0.06);
  --docs-detail-border: #e2e8f0;
  --docs-detail-hover: #f8fafc;
  --docs-detail-open-border: #e2e8f0;
  --docs-status-ok: #22c55e;
  --docs-status-warn: #eab308;
  --docs-status-error: #ef4446;
  --docs-status-bg: #ffffff;
  --docs-status-border: #e2e8f0;
  --docs-check-bg: #ffffff;
  --docs-check-border: #e2e8f0;
  --docs-checked-text: #94a3b8;
  --docs-pre-bg: #1e293b;
  --docs-pre-text: #e2e8f0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--docs-font);
  background: var(--docs-bg);
  color: var(--docs-text);
  line-height: 1.7;
}

a {
  color: var(--docs-link);
  text-decoration: none;
}
a:hover {
  color: var(--docs-link-hover);
  text-decoration: underline;
}

/* ========== Layout ========== */
.docs-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ========== Sidebar ========== */
.docs-sidebar {
  width: var(--docs-sidebar-width);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--docs-sidebar-bg);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

.docs-sidebar-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--docs-sidebar-header-border);
  flex-shrink: 0;
}

.docs-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.docs-logo-img {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

.docs-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.5px;
}

.docs-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.docs-nav-section {
  margin-bottom: 4px;
}

.docs-nav-title {
  padding: 8px 24px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.docs-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  color: var(--docs-sidebar-text);
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

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

.docs-nav-link.active {
  color: var(--docs-sidebar-active);
  border-left-color: var(--docs-sidebar-active);
  background: var(--docs-sidebar-active-bg);
}

.docs-nav-link .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 15px;
  flex-shrink: 0;
}

.docs-sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--docs-sidebar-footer-border);
  flex-shrink: 0;
}

.back-to-app {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--docs-sidebar-text);
  font-size: 13px;
  text-decoration: none !important;
  transition: color 0.15s;
}

.back-to-app:hover {
  color: var(--docs-sidebar-active);
}

/* ========== Content ========== */
.docs-content {
  margin-left: var(--docs-sidebar-width);
  flex: 1;
  min-height: 100vh;
  padding: 48px 72px;
  max-width: calc(var(--docs-sidebar-width) + var(--docs-content-max));
}

.docs-content-inner {
  max-width: var(--docs-content-max);
}

/* ========== Typography ========== */
.docs-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--docs-h1-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.docs-content .page-desc {
  font-size: 16px;
  color: var(--docs-text-secondary);
  margin-bottom: 40px;
}

.docs-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--docs-h2-border);
  line-height: 1.4;
}

.docs-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.docs-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.docs-content p {
  margin-bottom: 16px;
  color: var(--docs-text-secondary);
}

.docs-content ul,
.docs-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--docs-text-secondary);
}

.docs-content li {
  margin-bottom: 6px;
}

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

.docs-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

/* ========== Code ========== */
.docs-content code {
  background: var(--docs-code-bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--docs-mono-font);
  font-size: 0.875em;
  color: #e11d48;
}

.docs-content pre {
  background: var(--docs-pre-bg);
  color: var(--docs-pre-text);
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: var(--docs-mono-font);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.docs-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

/* ========== Blockquote / Tips ========== */
.docs-content blockquote {
  margin: 0 0 20px;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--docs-info-border);
  background: var(--docs-info-bg);
  color: var(--docs-text-secondary);
}

.docs-content blockquote.tip {
  border-left-color: var(--docs-tip-border);
  background: var(--docs-tip-bg);
}

.docs-content blockquote.warning {
  border-left-color: var(--docs-warn-border);
  background: var(--docs-warn-bg);
}

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

/* ========== Tables ========== */
.docs-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}

.docs-content th {
  background: var(--docs-table-header-bg);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--docs-border);
  color: var(--docs-text);
}

.docs-content td {
  padding: 10px 14px;
  border: 1px solid var(--docs-border);
  color: var(--docs-text-secondary);
}

.docs-content tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

/* ========== Method Badges ========== */
.method {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--docs-mono-font);
  line-height: 1.5;
  vertical-align: middle;
}
.method-get    { background: #dcfce7; color: #166534; }
.method-post   { background: #dbeafe; color: #1e40af; }
.method-put    { background: #fef3c7; color: #92400e; }
.method-delete { background: #fee2e2; color: #991b1b; }

/* ========== FAQ Details ========== */
.docs-faq details {
  margin-bottom: 8px;
  border: 1px solid var(--docs-detail-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--docs-card-bg);
}

.docs-faq summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--docs-text);
  user-select: none;
  transition: background 0.15s;
}

.docs-faq summary:hover {
  background: var(--docs-detail-hover);
}

.docs-faq details[open] summary {
  border-bottom: 1px solid var(--docs-detail-open-border);
}

.docs-faq .faq-answer {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--docs-text-secondary);
  line-height: 1.7;
}

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

/* FAQ search */
.docs-faq-search {
  position: relative;
  margin-bottom: 32px;
}

.docs-faq-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--docs-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--docs-font);
  background: var(--docs-card-bg);
  color: var(--docs-text);
  outline: none;
  transition: border-color 0.15s;
}

.docs-faq-search input:focus {
  border-color: var(--docs-link);
}

.docs-faq-search .faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--docs-text-tertiary);
  font-size: 18px;
}

.faq-no-results {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--docs-text-tertiary);
  font-size: 15px;
}

.faq-no-results.show {
  display: block;
}

.faq-category {
  font-size: 14px;
  font-weight: 600;
  color: var(--docs-text);
  margin: 24px 0 12px;
  padding: 8px 14px;
  background: var(--docs-table-header-bg);
  border-radius: 6px;
}

/* ========== Status Page ========== */
.status-summary {
  margin-bottom: 16px;
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.summary-badge.summary-ok {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.summary-badge.summary-warn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.summary-badge.summary-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.summary-badge .summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.summary-ok .summary-dot { background: #22c55e; }
.summary-warn .summary-dot { background: #eab308; }
.summary-error .summary-dot { background: #ef4444; }

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.status-card {
  background: var(--docs-status-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--docs-status-border);
  transition: box-shadow 0.2s;
}

.status-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.status-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-ok .status-indicator {
  background: var(--docs-status-ok);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.status-warn .status-indicator {
  background: var(--docs-status-warn);
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.4);
}

.status-error .status-indicator {
  background: var(--docs-status-error);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.status-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--docs-text);
}

.status-value {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.status-ok .status-value {
  color: #166534;
  background: #dcfce7;
}

.status-warn .status-value {
  color: #92400e;
  background: #fef3c7;
}

.status-error .status-value {
  color: #991b1b;
  background: #fee2e2;
}

.status-latency {
  font-size: 12px;
  color: var(--docs-text-tertiary);
  margin-top: 8px;
}

.status-updated {
  font-size: 12px;
  color: var(--docs-text-tertiary);
  margin-bottom: 24px;
}

.status-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--docs-text);
}

.status-chart-container {
  background: var(--docs-card-bg);
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.status-events {
  list-style: none;
  padding: 0;
}

.status-events li {
  padding: 10px 14px;
  border-left: 3px solid var(--docs-border);
  margin-left: 0;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--docs-text-secondary);
}

.status-events li .event-time {
  font-weight: 600;
  color: var(--docs-text);
  font-size: 12px;
  margin-right: 8px;
}

.status-events li .event-tag {
  display: inline-block;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-right: 6px;
}

.event-tag.resolved { background: #dcfce7; color: #166534; }
.event-tag.ongoing  { background: #fee2e2; color: #991b1b; }

/* ========== Security Page ========== */
.sec-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.sec-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--docs-check-bg);
  border: 1px solid var(--docs-check-border);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.sec-check-list li:hover {
  border-color: var(--docs-link);
}

.sec-check-list li.checked {
  text-decoration: line-through;
  color: var(--docs-checked-text);
  opacity: 0.7;
}

.sec-check-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--docs-accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* Password tester */
.pwd-tester {
  background: var(--docs-card-bg);
  border: 1px solid var(--docs-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.pwd-tester input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--docs-mono-font);
  background: var(--docs-bg);
  color: var(--docs-text);
  outline: none;
  margin-bottom: 12px;
}

.pwd-tester input:focus {
  border-color: var(--docs-link);
}

.pwd-strength-bar {
  height: 6px;
  background: var(--docs-code-bg);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pwd-strength-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.pwd-strength-text {
  font-size: 13px;
  color: var(--docs-text-secondary);
}

/* Security guidelines list */
.sec-guidelines {
  list-style: none;
  padding: 0;
}

.sec-guidelines li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--docs-text-secondary);
  border-bottom: 1px solid var(--docs-border);
}

.sec-guidelines li:last-child {
  border-bottom: none;
}

.sec-guidelines .guideline-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== Terms Page ========== */
.terms-meta {
  display: inline-block;
  font-size: 13px;
  color: var(--docs-text-tertiary);
  background: var(--docs-code-bg);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 32px;
}

.terms-section {
  margin-bottom: 20px;
}

.terms-section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
}

.terms-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--docs-border);
  text-align: center;
  font-size: 14px;
  color: var(--docs-text-tertiary);
}

/* ========== API Doc ========== */
.api-endpoint {
  margin-bottom: 40px;
}

.api-endpoint-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.api-endpoint-path {
  font-family: var(--docs-mono-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--docs-text);
}

.api-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--docs-text-tertiary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== Guide Steps ========== */
.guide-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.guide-steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--docs-card-bg);
  border: 1px solid var(--docs-border);
  border-radius: 8px;
}

.guide-steps li::before {
  content: counter(step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--docs-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== Inline TOC ========== */
.docs-toc {
  background: var(--docs-card-bg);
  border: 1px solid var(--docs-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.docs-toc-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--docs-text);
}

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

.docs-toc-list li {
  margin-bottom: 4px;
}

.docs-toc-list a {
  font-size: 14px;
  color: var(--docs-link);
  text-decoration: none;
}

.docs-toc-list a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .docs-sidebar {
    width: 240px;
  }

  .docs-content {
    margin-left: 240px;
    padding: 32px 40px;
  }
}

@media (max-width: 768px) {
  .docs-sidebar {
    width: 100%;
    position: relative;
    height: auto;
    max-height: none;
  }

  .docs-sidebar-nav {
    display: none;
  }

  .docs-sidebar.mobile-open .docs-sidebar-nav {
    display: block;
  }

  .docs-content {
    margin-left: 0;
    padding: 24px 20px;
  }

  .docs-content h1 {
    font-size: 26px;
  }

  .docs-content h2 {
    font-size: 20px;
  }

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

  .docs-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--docs-sidebar-text);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
  }
}

@media (max-width: 480px) {
  .status-grid {
    grid-template-columns: 1fr;
  }

  .docs-content {
    padding: 16px;
  }

  .docs-faq details {
    font-size: 14px;
  }
}

/* ========== Scroll to Top ========== */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--docs-sidebar-bg);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  line-height: 1;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #1e293b;
  color: var(--docs-sidebar-active);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.scroll-top-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* Mobile menu toggle (hidden by default on desktop) */
.mobile-menu-toggle {
  display: none;
}

/* ========== TOC Sidebar (right-side table of contents) ========== */
:root {
  --docs-toc-width: 200px;
}

/* Push main content left to make room for TOC sidebar */
.docs-wrapper.has-toc .docs-content {
  margin-right: var(--docs-toc-width);
}

.docs-toc-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--docs-toc-width);
  overflow-y: auto;
  padding: 48px 16px 32px;
  z-index: 90;
  background: transparent;
  border-left: 1px solid var(--docs-border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.docs-toc-sidebar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.docs-toc-sidebar-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--docs-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.docs-toc-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docs-toc-sidebar-nav a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--docs-text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  line-height: 1.45;
  transition: all 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.docs-toc-sidebar-nav a:hover {
  color: var(--docs-text);
  background: rgba(0,0,0,.03);
}

.docs-toc-sidebar-nav a.active {
  color: var(--docs-sidebar-active);
  border-left-color: var(--docs-sidebar-active);
  background: rgba(238, 187, 77, 0.06);
  font-weight: 600;
}

/* h3 indentation */
.docs-toc-sidebar-nav a.toc-h3 {
  padding-left: 22px;
  font-size: 12px;
}

/* Hide TOC on narrow screens */
@media (max-width: 1200px) {
  .docs-toc-sidebar {
    display: none !important;
  }
  .docs-wrapper.has-toc .docs-content {
    margin-right: 0;
  }
}
