/* Documentation guide pages (/docs/v3/) */
.guide-page {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 3rem;
}

.guide-page__shell {
  max-width: 1100px;
  margin: 0 auto;
}

.guide-page--symbols .guide-page__shell {
  max-width: 1200px;
}

.guide-page__hero--simple {
  margin-bottom: 0.75rem;
  text-align: center;
}

.guide-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(166, 194, 255, 0.88);
}

.guide-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #f8fafc;
}

.guide-page__lead {
  margin: 0;
  max-width: 52rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(214, 226, 255, 0.82);
}

.guide-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.guide-page__layout--full {
  grid-template-columns: 1fr;
}

/* A grid item defaults to min-width:auto: the message generator card and long
   <pre> blocks widened the column past a 375px screen, and the tab panel's
   overflow:hidden cut the guide text and screenshots off without a scrollbar. */
.guide-page__content {
  min-width: 0;
}

.guide-page--tabs .guide-page__hero {
  margin-bottom: 0.65rem;
}

/* Unified tab panel */
.guide-tab-panel {
  --guide-tab-panel-bg: rgba(15, 23, 42, 0.62);
  --guide-tab-panel-border: rgba(148, 163, 184, 0.14);
  --guide-tab-panel-line: rgba(148, 163, 184, 0.28);
  border: 1px solid var(--guide-tab-panel-border);
  border-radius: 1rem;
  background: var(--guide-tab-panel-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.guide-tab-panel__body {
  padding: 0;
}

.guide-tab-panel .guide-page__tabs-nav {
  margin-bottom: 0;
  padding: 0.5rem 0.85rem 0;
  background: rgba(2, 6, 23, 0.35);
}

.guide-tab-panel .guide-page__nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: var(--guide-tab-panel-line);
  --bs-nav-tabs-link-active-border-color: var(--guide-tab-panel-line) var(--guide-tab-panel-line) var(--guide-tab-panel-bg);
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--guide-tab-panel-line);
}

.guide-tab-panel .guide-page__nav-tabs .nav-link {
  margin-bottom: -1px;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-bottom-color: transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  color: rgba(203, 213, 225, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
}

.guide-tab-panel .guide-page__nav-tabs .nav-link:hover,
.guide-tab-panel .guide-page__nav-tabs .nav-link:focus {
  color: #f8fafc;
  border-color: var(--guide-tab-panel-line) var(--guide-tab-panel-line) transparent;
  isolation: isolate;
}

.guide-tab-panel .guide-page__nav-tabs .nav-link.active,
.guide-tab-panel .guide-page__nav-tabs .nav-item.show .nav-link {
  position: relative;
  z-index: 1;
  color: #ecfdf5;
  background: var(--guide-tab-panel-bg);
  border-color: var(--guide-tab-panel-line) var(--guide-tab-panel-line) var(--guide-tab-panel-bg);
  border-bottom-color: var(--guide-tab-panel-bg);
  box-shadow: none;
}

.guide-tab-panel .mog__card--tab-panel,
.guide-tab-panel .guide-symbols-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.guide-tab-panel .guide-symbols-market {
  margin: 0;
  padding: 1rem 1.2rem 0.5rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.guide-page--tabs .guide-footer {
  margin-top: 1.25rem;
}

@media (max-width: 575px) {
  .guide-tab-panel .guide-page__nav-tabs .nav-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.82rem;
  }
}

/* Content card */
.guide-page .mog__card--docs-body {
  border-radius: 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

.guide-page .mog__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(166, 194, 255, 0.85);
  margin: 0;
}

.guide-page .mog__doc-step {
  margin-top: 0.85rem;
}

.guide-page .mog__doc-step-panel {
  border-radius: 0.85rem;
  padding: 1rem 1.05rem;
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.guide-page .mog__doc-step-panel--important {
  background: rgba(22, 101, 52, 0.12);
  border-color: rgba(74, 242, 142, 0.28);
}

.guide-step__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.35rem;
}

.guide-step__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #052e16;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.guide-step__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(252, 255, 255, 0.96);
}

.guide-page .mog__doc-step-text {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(214, 226, 255, 0.88);
}

.guide-page .mog__doc-step-text a {
  color: #86efac;
}

.guide-page .mog__doc-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: rgba(214, 226, 255, 0.88);
}

.guide-step__figure {
  margin: 0.65rem 0 0;
}

.guide-step__figure img {
  width: 100%;
  height: auto;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.guide-step__caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
}

.guide-page .mog__doc-media--duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .guide-page .mog__doc-media--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guide-page__video .guide-step__title {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
}

.guide-page__video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 0.65rem;
}

.guide-page__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.65rem;
}

.guide-page__code {
  margin: 0.75rem 0 0;
  padding: 1rem;
  border-radius: 0.65rem;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow-x: auto;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #e2e8f0;
}

.guide-page__ip-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.guide-page__ip-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b9cb3;
}

.guide-page__ip-copy code {
  font-size: 0.95rem;
  color: #ecfdf5;
  background: rgba(2, 6, 23, 0.55);
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
}

.guide-page__ip-btn {
  border: 1px solid rgba(74, 242, 142, 0.4);
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

/* Binance API path segment inside tab panel */
.guide-workbook__api-path {
  padding: 0.85rem 1.2rem 0.25rem;
}

.guide-workbook__api-path-label {
  margin: 0 0 0.45rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #8b9cb3;
}

.guide-workbook__segment {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.24rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.guide-workbook__segment-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  border: 1px solid transparent;
}

.guide-workbook__segment-btn:hover {
  color: #f8fafc;
}

.guide-workbook__segment-btn.is-active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35) 0%, rgba(22, 163, 74, 0.22) 100%);
  border-color: rgba(74, 242, 142, 0.45);
  color: #ecfdf5;
}

.guide-workbook__api-path-hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(214, 226, 255, 0.72);
}

.guide-workbook__api-path-hint code {
  font-size: 0.9em;
  color: #fde68a;
}

/* Symbols pages */
.guide-symbols-market__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(166, 194, 255, 0.88);
}

.guide-symbols-market__segment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.guide-symbols-market__hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: rgba(214, 226, 255, 0.72);
}

.guide-symbols-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
}

.guide-symbols-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.guide-symbols-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.55rem 0.65rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.guide-symbols-table td {
  padding: 0.45rem 0.65rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.guide-symbols-table tbody tr:nth-child(even) td {
  background: rgba(2, 6, 23, 0.28);
}

.guide-symbols-error {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  background: rgba(127, 29, 29, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

/* Footer */
.guide-footer {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.guide-footer__primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35) 0%, rgba(22, 163, 74, 0.22) 100%);
  border: 1px solid rgba(74, 242, 142, 0.45);
  color: #ecfdf5;
  font-weight: 700;
  text-decoration: none;
}

.guide-footer__primary:hover {
  color: #fff;
  border-color: rgba(134, 239, 172, 0.65);
}

.guide-footer__secondary {
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

.guide-footer__secondary a {
  color: #93c5fd;
  text-decoration: none;
}

.guide-footer__secondary a:hover {
  text-decoration: underline;
}

/* Light theme */
html[data-app-theme="light"] .guide-page--guest-shell,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell {
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__eyebrow,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__eyebrow {
  color: #64748b;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__title,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__title,
html[data-app-theme="light"] .guide-page--guest-shell .guide-step__title,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-step__title {
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__lead,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__lead,
html[data-app-theme="light"] .guide-page--guest-shell .mog__doc-step-text,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__doc-step-text {
  color: #475569;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-tab-panel,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-tab-panel {
  --guide-tab-panel-bg: #ffffff;
  --guide-tab-panel-border: #e2e8f0;
  --guide-tab-panel-line: #dee2e6;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-tab-panel .guide-page__tabs-nav,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-tab-panel .guide-page__tabs-nav {
  background: #f8fafc;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-tab-panel .guide-page__nav-tabs .nav-link,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-tab-panel .guide-page__nav-tabs .nav-link {
  color: #64748b;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-tab-panel .guide-page__nav-tabs .nav-link.active,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-tab-panel .guide-page__nav-tabs .nav-link.active {
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .mog__card--docs-body,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__card--docs-body,
html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-card,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

html[data-app-theme="light"] .guide-page--guest-shell .mog__doc-step-panel,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__doc-step-panel {
  background: #f8fafc;
  border-color: #e2e8f0;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-table thead th,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-table thead th {
  background: #f1f5f9;
  color: #334155;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-table td,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-table td {
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-table tbody tr:nth-child(even) td,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

/* Dark app shell */
html[data-app-theme="dark"] body.ta-app-body .guide-page--app-shell .guide-tab-panel {
  --guide-tab-panel-bg: rgba(15, 23, 42, 0.72);
  --guide-tab-panel-border: rgba(148, 163, 184, 0.16);
}

html[data-app-theme="dark"] body.ta-app-body .guide-page--app-shell .mog__card--docs-body,
html[data-app-theme="dark"] body.ta-app-body .guide-page--app-shell .guide-symbols-card {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.16);
}

html[data-app-theme="dark"] body.ta-app-body .guide-page--app-shell .mog__doc-step-panel {
  background: rgba(2, 6, 23, 0.45);
  border-color: rgba(148, 163, 184, 0.12);
}

/* Breadcrumbs above a guide's hero (SEO wave 0) */
.guide-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  opacity: 0.8;
}
.guide-breadcrumbs__item + .guide-breadcrumbs__item::before {
  content: "›";
  margin-right: 0.5rem;
  opacity: 0.6;
}
.guide-breadcrumbs__item a {
  color: inherit;
  text-decoration: none;
}
.guide-breadcrumbs__item a:hover {
  text-decoration: underline;
}

/* Light theme: the symbols pages, guide footers and the controls inside
   guides were styled for the dark canvas only (owner, 16.09.2026). */
html[data-app-theme="light"] .guide-page--guest-shell .guide-tab-panel .guide-page__nav-tabs .nav-link:hover,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-tab-panel .guide-page__nav-tabs .nav-link:hover {
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .mog__label,
html[data-app-theme="light"] .guide-page--guest-shell .guide-page__ip-label,
html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__api-path-label,
html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-market__label,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__label,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__ip-label,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__api-path-label,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-market__label {
  color: #64748b;
}

html[data-app-theme="light"] .guide-page--guest-shell .mog__doc-list,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__doc-list {
  color: #334155;
}

html[data-app-theme="light"] .guide-page--guest-shell .mog__doc-step-text a,
html[data-app-theme="light"] .guide-page--guest-shell .guide-footer__secondary a,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .mog__doc-step-text a,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-footer__secondary a {
  color: #15803d;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-step__caption,
html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-market__hint,
html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__api-path-hint,
html[data-app-theme="light"] .guide-page--guest-shell .guide-footer__secondary,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-step__caption,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-market__hint,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__api-path-hint,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-footer__secondary {
  color: #64748b;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__api-path-hint code,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__api-path-hint code {
  color: #b45309;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-step__figure img,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-step__figure img {
  border-color: #e2e8f0;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__code,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__code {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__ip-copy,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__ip-copy {
  border-top-color: #e2e8f0;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__ip-copy code,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__ip-copy code {
  background: #f1f5f9;
  color: #0f172a;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-page__ip-btn,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-page__ip-btn {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.35);
  color: #166534;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__segment,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__segment {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__segment-btn,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__segment-btn {
  color: #475569;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__segment-btn:hover,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__segment-btn:hover {
  color: #166534;
  background: #f0fdf4;
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-workbook__segment-btn.is-active,
html[data-app-theme="light"] .guide-page--guest-shell .guide-footer__primary,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-workbook__segment-btn.is-active,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-footer__primary {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.25);
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-footer__primary:hover,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-footer__primary:hover {
  color: #fff;
  filter: brightness(1.06);
}

html[data-app-theme="light"] .guide-page--guest-shell .guide-symbols-error,
html[data-app-theme="light"] body.ta-app-body .guide-page--app-shell .guide-symbols-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

/* Inside a tabbed guide the content sits on the tab panel itself, like the
   market or API-path switch above it; .guide-page .mog__card--docs-body drew
   a second card inside the panel, its edge on top of the panel's own. */
html[data-app-theme] .guide-page .guide-tab-panel .mog__card--docs-body,
html[data-app-theme] body.ta-app-body .guide-page--app-shell .guide-tab-panel .mog__card--docs-body {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
