:root {
  --docs-navy: #173b69;
  --docs-blue: #2657a4;
  --docs-teal: #236f69;
  --docs-green: #359a7e;
  --docs-bg: #f7f9fb;
  --docs-surface: #fff;
  --docs-text: #1c2c3a;
  --docs-muted: #637384;
  --docs-border: #dce4e9;
  --docs-code: #101923;
  --docs-header-height: 64px;
  --docs-shadow: 0 12px 34px rgba(23, 59, 105, .09);
}
* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: calc(var(--docs-header-height) + 24px); }
body { margin: 0; min-width: 320px; color: var(--docs-text); background: var(--docs-bg); font-family: "Vazirmatn", Tahoma, Arial, sans-serif; line-height: 1.85; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
code, pre { font-family: Consolas, Monaco, "Courier New", monospace; }
code { direction: ltr; unicode-bidi: embed; }

.dev-header {
  position: sticky; top: 0; z-index: 100;
  min-height: var(--docs-header-height);
  display: grid; grid-template-columns: auto minmax(260px, 620px) minmax(0, 1fr);
  align-items: center; gap: 24px;
  padding: 8px clamp(14px, 3vw, 42px);
  color: #fff;
  background: linear-gradient(90deg, var(--docs-navy) 0%, var(--docs-blue) 58%, var(--docs-teal) 100%);
  box-shadow: 0 4px 20px rgba(9, 25, 45, .18);
}
.dev-brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.dev-brand img { width: 42px; height: 42px; object-fit: contain; }
.dev-brand span { display: flex; flex-direction: column; line-height: 1.05; }
.dev-brand strong { font: 900 16px/1.1 Montserrat, Vazirmatn, sans-serif; }
.dev-brand small { margin-top: 4px; color: rgba(255,255,255,.68); font: 800 7px/1 Montserrat, sans-serif; letter-spacing: 1.8px; }
.dev-search { min-height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.11); }
.dev-search i { color: rgba(255,255,255,.65); }
.dev-search input { min-width: 0; width: 100%; border: 0; outline: 0; color: #fff; background: transparent; }
.dev-search input::placeholder { color: rgba(255,255,255,.58); }
.dev-header-actions { min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.dev-header-actions > a, .dev-language > button, .dev-nav-toggle { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.17); border-radius: 9px; color: #fff; background: rgba(255,255,255,.09); cursor: pointer; }
.dev-header-actions > a { padding: 7px 11px; font-size: 11px; font-weight: 800; }
.dev-status { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.76); font-size: 10px; font-weight: 800; white-space: nowrap; }
.dev-status i { width: 8px; height: 8px; border-radius: 50%; background: #6ee7b7; box-shadow: 0 0 0 4px rgba(110,231,183,.13); }
.dev-language { position: relative; }
.dev-language > button { width: 52px; }
.dev-language > button img, .dev-language-menu img { width: 24px; height: 17px; border-radius: 3px; object-fit: cover; }
.dev-language-menu { position: absolute; top: calc(100% + 8px); inset-inline-end: 0; width: 190px; max-height: 360px; overflow: auto; display: none; padding: 6px; border: 1px solid var(--docs-border); border-radius: 11px; color: var(--docs-text); background: #fff; box-shadow: var(--docs-shadow); }
.dev-language-menu.open { display: block; }
.dev-language-menu a { display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: 7px; font-size: 11px; }
.dev-language-menu a:hover { background: #eef4f7; }
.dev-nav-toggle { display: none; width: 42px; }

.docs-layout { width: min(1440px, 100%); min-height: calc(100dvh - var(--docs-header-height)); display: grid; grid-template-columns: 270px minmax(0, 900px); justify-content: center; gap: clamp(28px, 4vw, 64px); margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }
.docs-sidebar { position: sticky; top: var(--docs-header-height); align-self: start; height: calc(100dvh - var(--docs-header-height)); overflow: auto; padding: 26px 16px 28px 0; border-inline-end: 1px solid var(--docs-border); }
.docs-sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; color: #8795a3; font-size: 10px; font-weight: 900; letter-spacing: .02em; }
.docs-sidebar-head button { display: none; border: 0; background: transparent; cursor: pointer; }
.docs-sidebar nav { display: grid; gap: 3px; }
.docs-sidebar nav > a, .docs-nav-group a { min-height: 38px; display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 7px; color: #526373; font-size: 11px; font-weight: 750; transition: .16s ease; }
.docs-sidebar nav > a i { width: 17px; color: #7c8c9b; text-align: center; }
.docs-sidebar a:hover, .docs-sidebar a.active { color: var(--docs-blue); background: #eaf1fb; }
.docs-sidebar a.active { box-shadow: inset -3px 0 var(--docs-blue); font-weight: 900; }
.docs-nav-group { display: grid; gap: 2px; margin: 9px 0; padding: 9px 0; border-block: 1px solid #e9eef2; }
.docs-nav-group > strong { padding: 0 10px 5px; color: #8795a3; font-size: 9px; }
.docs-nav-group a { min-height: 32px; padding-inline-start: 30px; font-size: 10px; }
.docs-sidebar-note { display: flex; gap: 9px; margin-top: 20px; padding: 12px; border: 1px solid #d9e7e3; border-radius: 10px; color: #55706d; background: #f1f8f6; }
.docs-sidebar-note i { margin-top: 4px; color: var(--docs-teal); }
.docs-sidebar-note p { margin: 0; font-size: 9px; line-height: 1.8; }
.docs-sidebar-backdrop { display: none; }

.docs-content { min-width: 0; padding: 42px 0 90px; }
.docs-anchor { scroll-margin-top: calc(var(--docs-header-height) + 24px); }
.docs-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #738394; font-size: 10px; }
.docs-breadcrumb a:hover { color: var(--docs-blue); }
.docs-breadcrumb i { font-size: 8px; }
.docs-eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--docs-teal); font-size: 10px; font-weight: 900; }
.docs-intro h1 { margin: 7px 0 8px; font-size: clamp(32px, 5vw, 52px); line-height: 1.25; letter-spacing: -.8px; }
.docs-intro > p { max-width: 760px; margin: 0; color: var(--docs-muted); font-size: 14px; }
.docs-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.docs-facts span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid var(--docs-border); border-radius: 7px; color: #526373; background: #fff; font-size: 9px; font-weight: 850; }
.docs-facts i { color: var(--docs-teal); }
.docs-section { padding-top: 72px; }
.docs-section h2, .docs-intro h2 { margin: 0 0 10px; color: #182b3c; font-size: clamp(22px, 3vw, 29px); line-height: 1.35; }
.docs-section > p { margin: 0 0 18px; color: var(--docs-muted); font-size: 12px; }
.docs-section code, .docs-intro code { padding: 2px 5px; border-radius: 5px; color: #a83a57; background: #f7edf0; font-size: .92em; }
.docs-callout { display: flex; gap: 12px; margin: 24px 0; padding: 15px 17px; border: 1px solid #cfe0ec; border-inline-start: 4px solid var(--docs-blue); border-radius: 9px; background: #edf5ff; }
.docs-callout.warning { border-color: #eadcb9; border-inline-start-color: #c48a15; background: #fff9e9; }
.docs-callout > i { margin-top: 4px; color: var(--docs-blue); }
.docs-callout.warning > i { color: #b7790f; }
.docs-callout strong { display: block; margin-bottom: 3px; font-size: 11px; }
.docs-callout p { margin: 0; color: #5d6f7e; font-size: 10px; }
.endpoint-reference { display: grid; gap: 10px; margin: 22px 0 30px; }
.endpoint-reference article { display: grid; grid-template-columns: 56px minmax(0, 1fr); align-items: center; gap: 8px 12px; padding: 15px; border: 1px solid var(--docs-border); border-radius: 10px; background: #fff; box-shadow: 0 4px 16px rgba(23,59,105,.04); }
.endpoint-reference .http-method { display: inline-grid; place-items: center; min-height: 29px; border-radius: 6px; color: #fff; background: #238269; font: 900 9px Montserrat, sans-serif; }
.endpoint-reference code { overflow: auto; padding: 0; color: var(--docs-blue); background: transparent; font-size: 11px; font-weight: 800; white-space: nowrap; }
.endpoint-reference p { grid-column: 2; margin: -3px 0 0; color: var(--docs-muted); font-size: 9px; }
.docs-table-wrap { overflow-x: auto; border: 1px solid var(--docs-border); border-radius: 10px; background: #fff; }
.docs-reference-table { width: 100%; min-width: 660px; border-collapse: collapse; }
.docs-reference-table th, .docs-reference-table td { padding: 11px 13px; border-bottom: 1px solid #e8edf1; text-align: start; font-size: 10px; }
.docs-reference-table th { color: #536576; background: #f4f7f9; font-size: 9px; }
.docs-reference-table tr:last-child td { border-bottom: 0; }
.docs-reference-table code { color: var(--docs-blue); background: #edf3fb; }

.response-schema { display: grid; grid-template-columns: 220px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--docs-border); border-radius: 11px; background: #fff; }
.response-schema-tree { display: grid; align-content: start; padding: 14px; border-inline-end: 1px solid var(--docs-border); background: #f7f9fb; }
.response-schema-tree span { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px; border-bottom: 1px solid #e7ecef; }
.response-schema-tree span:last-child { border-bottom: 0; }
.response-schema-tree b { color: #38546b; font-size: 10px; }
.response-schema-tree small { color: #8795a3; font: 700 8px Consolas, monospace; }
.response-schema pre { margin: 0; padding: 20px; overflow: auto; color: #b8e8d9; background: var(--docs-code); font-size: 10px; line-height: 1.8; text-align: left; direction: ltr; }

.language-examples, .module-code, .request-tester { overflow: hidden; border: 1px solid var(--docs-border); border-radius: 11px; background: var(--docs-code); box-shadow: var(--docs-shadow); }
.code-tab-list { display: flex; gap: 2px; overflow-x: auto; padding: 7px; border-bottom: 1px solid rgba(255,255,255,.07); background: #182431; direction: ltr; }
.code-tab-list button { min-height: 34px; flex: 0 0 auto; padding: 6px 12px; border: 0; border-radius: 6px; color: #95a7b7; background: transparent; cursor: pointer; font: 800 9px Montserrat, sans-serif; }
.code-tab-list button.active { color: #fff; background: #2c608d; }
.code-panel { display: none; direction: ltr; }
.code-panel.active { display: block; }
.code-panel header { display: flex; align-items: center; justify-content: space-between; padding: 8px 13px; color: #d9e5ef; background: #121d28; }
.code-panel header strong { font: 800 9px Montserrat, sans-serif; }
.code-panel header button, .snippet-tabs button:last-child { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; color: #c6d5df; background: rgba(255,255,255,.05); cursor: pointer; font-size: 8px; }
.code-panel pre { min-height: 330px; max-height: 580px; margin: 0; padding: 18px; overflow: auto; color: #b8e8d9; font-size: 10px; line-height: 1.8; text-align: left; white-space: pre; tab-size: 2; }

.module-section { border-top: 1px solid var(--docs-border); margin-top: 72px; padding-top: 50px; }
.module-section + .module-section { margin-top: 54px; }
.module-workbench { display: grid; grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr); gap: 14px; direction: rtl; }
.module-preview, .module-code { min-width: 0; direction: rtl; }
.module-preview { overflow: hidden; border: 1px solid var(--docs-border); border-radius: 11px; background: #fff; box-shadow: 0 8px 24px rgba(23,59,105,.06); }
.module-preview-head { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 8px 13px; border-bottom: 1px solid var(--docs-border); color: #657687; background: #f5f7f9; font-size: 9px; font-weight: 900; }
.module-preview-stage { min-height: 300px; display: grid; place-items: center; padding: 22px; background: radial-gradient(circle at 15% 15%, rgba(38,87,164,.08), transparent 32%), #fbfcfd; }
.module-code { direction: ltr; }
.snippet-tabs { min-height: 42px; display: flex; align-items: center; gap: 3px; padding: 6px; border-bottom: 1px solid rgba(255,255,255,.07); background: #182431; }
.snippet-tabs button { min-height: 30px; padding: 5px 11px; border: 0; border-radius: 6px; color: #95a7b7; background: transparent; cursor: pointer; font: 800 9px Montserrat, sans-serif; }
.snippet-tabs button.active { color: #fff; background: #2c608d; }
.snippet-tabs button:last-child { margin-left: auto; width: 32px; justify-content: center; padding: 0; }
.module-code pre { display: none; min-height: 300px; max-height: 460px; margin: 0; padding: 17px; overflow: auto; color: #b8e8d9; font-size: 9.5px; line-height: 1.8; text-align: left; white-space: pre; }
.module-code pre.active { display: block; }
.demo-content { width: 100%; padding: 22px; border: 1px solid #dbe7e4; border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(23,59,105,.08); }
.demo-content h3 { margin: 0 0 8px; color: var(--docs-navy); font-size: 18px; }
.demo-content p { margin: 0; color: #5d6f7e; font-size: 11px; }
.demo-callout { width: 100%; display: flex; gap: 11px; padding: 15px; border-inline-start: 4px solid var(--docs-blue); border-radius: 12px; color: var(--docs-navy); background: #eef5ff; }
.demo-callout > i { margin-top: 4px; color: var(--docs-blue); }
.demo-callout strong { font-size: 11px; }
.demo-callout p { margin: 2px 0 0; color: #5d6f7e; font-size: 9px; }
.demo-table-wrap { width: 100%; overflow: auto; border: 1px solid #dbe7e4; border-radius: 12px; }
.demo-table { width: 100%; border-collapse: collapse; background: #fff; }
.demo-table th, .demo-table td { padding: 10px 12px; border-bottom: 1px solid #e5ecea; text-align: start; font-size: 9px; }
.demo-table th { color: #fff; background: var(--docs-blue); }
.demo-table tr:nth-child(even) td { background: #f5f9fc; }
.demo-feature-list { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 0; padding: 0; list-style: none; }
.demo-feature-list li { display: flex; align-items: center; gap: 8px; padding: 11px; border: 1px solid #dbe7e4; border-radius: 10px; background: #fff; font-size: 9px; }
.demo-feature-list i { color: var(--docs-teal); }
.demo-gallery { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.demo-gallery figure { margin: 0; }
.demo-gallery img { width: 100%; aspect-ratio: 4/3; display: block; object-fit: contain; border-radius: 10px; background: #eef2f6; }
.demo-gallery figcaption { margin-top: 5px; color: #6a7a88; font-size: 8px; text-align: center; }

.request-controls { display: grid; grid-template-columns: 1fr 1.7fr 1fr auto; gap: 10px; padding: 14px; color: var(--docs-text); background: #f5f7f9; direction: rtl; }
.request-controls label { display: flex; flex-direction: column; gap: 4px; }
.request-controls label span { color: #637384; font-size: 8px; font-weight: 900; }
.request-controls input, .request-controls select { min-height: 40px; width: 100%; padding: 7px 9px; border: 1px solid #ccd9df; border-radius: 7px; outline: 0; background: #fff; }
.request-controls button { align-self: end; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 7px 14px; border: 0; border-radius: 7px; color: #fff; background: linear-gradient(135deg, var(--docs-blue), var(--docs-teal)); cursor: pointer; font-weight: 900; }
.request-controls button:disabled { opacity: .55; cursor: wait; }
.request-identifier.is-hidden { display: none; }
.request-url { min-height: 48px; display: grid; grid-template-columns: auto minmax(0, 1fr) 34px; align-items: center; gap: 8px; padding: 8px 13px; color: #dce7ef; background: #182431; direction: ltr; }
.request-url > span { padding: 3px 7px; border-radius: 5px; color: #fff; background: #238269; font: 900 8px Montserrat, sans-serif; }
.request-url code { min-width: 0; overflow: auto; color: #b8e8d9; font-size: 9px; white-space: nowrap; }
.request-url button, .request-output header button { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; color: #d6e3ec; background: rgba(255,255,255,.05); cursor: pointer; }
.request-output { direction: ltr; }
.request-output header { display: flex; align-items: center; gap: 9px; padding: 8px 13px; color: #d6e3ec; background: #121d28; }
.request-output header strong { font: 800 9px Montserrat, sans-serif; }
.request-output header span { margin-left: auto; color: #7ee2bd; font: 800 8px Montserrat, sans-serif; }
.request-output header span.error { color: #fca5a5; }
.request-output pre { min-height: 280px; max-height: 520px; margin: 0; padding: 17px; overflow: auto; color: #b8e8d9; font-size: 9.5px; line-height: 1.8; text-align: left; white-space: pre-wrap; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.status-grid article { padding: 16px; border: 1px solid var(--docs-border); border-radius: 9px; background: #fff; }
.status-grid b { display: block; color: var(--docs-blue); font: 900 22px Montserrat, sans-serif; }
.status-grid span { color: var(--docs-muted); font-size: 9px; }
.dev-footer { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px max(18px, calc((100% - 1160px)/2)); border-top: 1px solid var(--docs-border); color: #637384; background: #fff; }
.dev-footer a { display: flex; align-items: center; gap: 8px; font-weight: 900; }
.dev-footer img { width: 34px; height: 34px; }
.dev-footer small { font: 700 8px Montserrat, sans-serif; }
.dev-toast { position: fixed; z-index: 300; inset: auto 18px 18px auto; padding: 9px 13px; border-radius: 8px; color: #fff; background: var(--docs-navy); box-shadow: var(--docs-shadow); font-size: 10px; }
.dev-toast[hidden] { display: none; }
.dev-toast.error { background: #b91c1c; }
[data-docs-section].is-search-hidden { display: none; }

@media (max-width: 1040px) {
  .dev-header { grid-template-columns: auto minmax(220px, 1fr) auto; gap: 12px; }
  .dev-status { display: none; }
  .docs-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 28px; }
  .module-workbench { grid-template-columns: 280px minmax(0, 1fr); }
}
@media (max-width: 820px) {
  .dev-header { grid-template-columns: auto auto minmax(0, 1fr) auto; }
  .dev-nav-toggle { display: inline-flex; order: -1; }
  .dev-search { grid-column: 1 / -1; grid-row: 2; }
  .dev-header { padding-bottom: 10px; }
  :root { --docs-header-height: 116px; }
  .docs-layout { display: block; padding: 0 18px; }
  .docs-sidebar { position: fixed; z-index: 220; top: 0; inset-inline-start: 0; width: min(300px, 86vw); height: 100dvh; padding: 18px; border: 0; background: #fff; box-shadow: 0 0 50px rgba(7,22,39,.22); transform: translateX(calc(-100% - 20px)); transition: transform .2s ease; }
  [dir="rtl"] .docs-sidebar { inset-inline-start: auto; inset-inline-end: 0; transform: translateX(calc(100% + 20px)); }
  .docs-sidebar.open { transform: translateX(0); }
  .docs-sidebar-head button { display: inline-grid; place-items: center; width: 36px; height: 36px; }
  .docs-sidebar-backdrop { position: fixed; z-index: 210; inset: 0; display: block; border: 0; background: rgba(8,20,35,.55); }
  .docs-sidebar-backdrop[hidden] { display: none; }
  .docs-content { padding-top: 28px; }
  .module-workbench { grid-template-columns: 1fr; }
  .module-preview { order: -1; }
  .response-schema { grid-template-columns: 1fr; }
  .response-schema-tree { grid-template-columns: repeat(2, 1fr); border-inline-end: 0; border-bottom: 1px solid var(--docs-border); }
  .request-controls { grid-template-columns: 1fr 1fr; }
  .request-controls button { grid-column: 1/-1; }
  .status-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .dev-brand span, .dev-header-actions > a span { display: none; }
  .dev-header-actions { gap: 5px; }
  .dev-header-actions > a { width: 40px; padding: 0; }
  .docs-layout { padding: 0 14px; }
  .docs-content { padding-bottom: 60px; }
  .docs-intro h1 { font-size: 31px; }
  .endpoint-reference article { grid-template-columns: 48px minmax(0,1fr); }
  .request-controls { grid-template-columns: 1fr; }
  .request-controls button { grid-column: auto; }
  .response-schema-tree, .status-grid { grid-template-columns: 1fr; }
  .module-preview-stage { min-height: 250px; padding: 14px; }
  .demo-feature-list, .demo-gallery { grid-template-columns: 1fr; }
  .code-panel pre { min-height: 300px; padding: 14px; font-size: 9px; }
  .dev-footer { flex-direction: column; text-align: center; }
}


/* DocMaker 8.9.14 — accessible developer guide and ready dynamic renderers. */
:root{--docs-header-height:76px}
body{font-size:17px;line-height:1.9}
.dev-header{min-height:76px;grid-template-columns:auto minmax(300px,680px) minmax(0,1fr);padding-block:11px}
.dev-brand img{width:48px;height:48px}.dev-brand strong{font-size:19px}.dev-brand small{font-size:10px}
.dev-search{min-height:50px;padding-inline:16px;font-size:15px}.dev-header-actions>a,.dev-language>button,.dev-nav-toggle{min-height:48px;border-radius:11px}.dev-header-actions>a{padding-inline:15px;font-size:14px}.dev-status{font-size:13px}.dev-language>button{width:60px}
.docs-layout{grid-template-columns:300px minmax(0,980px);gap:48px}
.docs-sidebar{padding-top:30px}.docs-sidebar-head{font-size:14px}.docs-sidebar nav>a,.docs-nav-group a{min-height:48px;padding:10px 13px;font-size:15px;border-radius:10px}.docs-nav-group>strong{font-size:13px;padding:0 13px 7px}.docs-nav-group a{min-height:43px;padding-inline-start:34px;font-size:14px}.docs-sidebar-note p{font-size:13px}
.docs-content{padding-top:48px}.docs-breadcrumb,.docs-eyebrow{font-size:14px}.docs-intro>p,.docs-section>p{font-size:17px}.docs-intro h1{font-size:clamp(38px,5vw,58px)}.docs-section h2,.docs-intro h2{font-size:clamp(27px,3vw,34px)}
.docs-facts span{min-height:38px;padding:8px 13px;font-size:13px}.docs-callout{padding:19px 21px}.docs-callout strong{font-size:16px}.docs-callout p{font-size:15px}
.endpoint-reference article{grid-template-columns:70px minmax(0,1fr);padding:19px}.endpoint-reference .http-method{min-height:36px;font-size:12px}.endpoint-reference code{font-size:15px}.endpoint-reference p{font-size:14px}
.docs-reference-table th,.docs-reference-table td{padding:14px 16px;font-size:14px}.docs-reference-table th{font-size:13px}
.response-schema{grid-template-columns:250px minmax(0,1fr)}.response-schema-tree b{font-size:14px}.response-schema-tree small{font-size:11px}.response-schema pre{font-size:13px}
.code-tab-list{padding:9px}.code-tab-list button{min-height:42px;padding:8px 15px;font-size:13px}.code-panel header{padding:11px 16px}.code-panel header strong{font-size:13px}.code-panel header button,.snippet-tabs button:last-child{min-height:38px;font-size:12px}.code-panel pre{font-size:13px;line-height:1.85;padding:22px}
.module-section{padding-top:58px}.module-workbench{grid-template-columns:minmax(350px,.92fr) minmax(0,1.08fr);gap:18px}.module-preview,.module-code{border-radius:15px}.module-preview-head{min-height:52px;padding:11px 16px;font-size:14px}.module-preview-stage{min-height:360px;padding:26px}.dynamic-demo-host{width:100%}
.snippet-tabs{min-height:54px;padding:8px}.snippet-tabs button{min-height:38px;padding:8px 14px;font-size:13px}.snippet-tabs button:last-child{width:40px}.module-code pre{min-height:360px;font-size:13px;line-height:1.85;padding:21px}
.demo-content{padding:26px}.demo-content h3{font-size:22px}.demo-content p{font-size:16px}.demo-callout{gap:14px;padding:19px}.demo-callout strong{font-size:16px}.demo-callout p{font-size:15px}.demo-table{min-width:650px}.demo-table th,.demo-table td{padding:13px 15px;font-size:14px}.demo-section-row td{color:#173b69!important;background:#eaf2fb!important;font-weight:900}.demo-feature-list li{padding:14px;font-size:14px}.demo-gallery figcaption{font-size:13px}
.request-controls{padding:18px;gap:13px}.request-controls label span{font-size:13px}.request-controls input,.request-controls select,.request-controls button{min-height:50px;font-size:15px}.request-url{min-height:58px}.request-url>span{font-size:11px}.request-url code{font-size:13px}.request-output header strong,.request-output header span{font-size:12px}.request-output pre{font-size:13px}
.status-grid article{padding:20px}.status-grid b{font-size:28px}.status-grid span{font-size:14px}.dev-footer small,.dev-toast{font-size:13px}
@media(max-width:1040px){.docs-layout{grid-template-columns:260px minmax(0,1fr);gap:30px}.module-workbench{grid-template-columns:320px minmax(0,1fr)}}
@media(max-width:820px){:root{--docs-header-height:132px}.docs-layout{padding-inline:18px}.module-workbench{grid-template-columns:1fr}.module-preview-stage{min-height:300px}.docs-sidebar nav>a,.docs-nav-group a{font-size:16px}}
@media(max-width:560px){.dev-search{font-size:16px}.docs-intro h1{font-size:34px}.docs-section>p,.docs-intro>p{font-size:16px}.module-preview-stage{min-height:260px;padding:16px}.module-code pre,.code-panel pre{font-size:12px}.snippet-tabs button{font-size:12px;padding-inline:10px}}

/* DocMaker 8.9.14 final accessibility and mobile layout hardening. */
.dev-language-menu a{min-height:46px;padding:10px 12px;font-size:15px}
.docs-section code,.docs-intro code{font-size:.96em}
.code-panel pre,.module-code pre,.response-schema pre,.request-output pre{font-size:15px!important;line-height:1.9!important}
.code-panel header button,.snippet-tabs button:last-child,.request-url button,.request-output header button{min-width:44px;min-height:44px}
.snippet-tabs button,.code-tab-list button{min-height:46px;font-size:14px}
.request-controls label span{font-size:15px}
.request-controls input,.request-controls select,.request-controls button{min-height:52px;font-size:16px}
.request-url code{font-size:14px}
.module-preview-head{font-size:15px}
.docs-sidebar-note{padding:15px}.docs-sidebar-note p{font-size:14px}

@media(max-width:820px){
  :root{--docs-header-height:142px}
  .dev-header{
    grid-template-columns:52px minmax(0,1fr) auto!important;
    grid-template-rows:56px 58px!important;
    gap:8px 10px!important;
    padding:8px 12px 12px!important;
  }
  .dev-nav-toggle{display:inline-flex!important;grid-column:1;grid-row:1;order:0!important;width:50px!important}
  .dev-brand{grid-column:2;grid-row:1;min-width:0}
  .dev-brand span{min-width:0}.dev-brand strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .dev-header-actions{grid-column:3;grid-row:1;min-width:max-content}
  .dev-search{grid-column:1/-1!important;grid-row:2!important;width:100%;min-width:0}
  .docs-content{padding-top:32px}
  .module-workbench{grid-template-columns:1fr!important}
  .module-preview{order:-1}
  .module-preview-stage{min-height:280px}
  .response-schema{grid-template-columns:1fr!important}
  .response-schema-tree{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  :root{--docs-header-height:136px}
  .dev-header{grid-template-columns:48px minmax(0,1fr) auto!important;grid-template-rows:52px 56px!important;padding-inline:10px!important}
  .dev-nav-toggle{width:46px!important;min-height:46px!important}
  .dev-brand img{width:42px;height:42px}.dev-brand strong{font-size:17px}.dev-brand small{font-size:9px}
  .dev-header-actions>a,.dev-language>button{min-height:46px!important;width:46px!important;padding:0!important}
  .docs-layout{padding-inline:12px!important}
  .docs-content{padding-top:24px}
  .docs-intro h1{font-size:32px!important;line-height:1.35}
  .docs-section h2,.docs-intro h2{font-size:25px!important}
  .docs-section>p,.docs-intro>p{font-size:17px!important;line-height:1.95}
  .docs-facts span{font-size:14px}
  .endpoint-reference article{grid-template-columns:64px minmax(0,1fr)}
  .endpoint-reference code{font-size:14px;white-space:normal;overflow-wrap:anywhere}
  .endpoint-reference p{font-size:14px}
  .module-preview-stage{min-height:240px;padding:14px}
  .module-code pre,.code-panel pre,.response-schema pre,.request-output pre{font-size:14px!important;padding:17px!important}
  .snippet-tabs,.code-tab-list{overflow-x:auto;scrollbar-width:thin}
  .snippet-tabs button,.code-tab-list button{min-height:44px;font-size:14px;flex:0 0 auto}
  .request-controls{grid-template-columns:1fr!important}
  .request-controls button{grid-column:auto!important}
  .request-url{grid-template-columns:auto minmax(0,1fr) 44px;padding-inline:10px}
  .request-url code{font-size:13px}
  .response-schema-tree{grid-template-columns:1fr!important}
  .status-grid{grid-template-columns:1fr!important}
  .dev-footer{padding-inline:16px}
}

/* Keep the mobile navigation completely outside the viewport until opened. */
@media(max-width:820px){
  .docs-sidebar{
    inset-inline-start:auto!important;inset-inline-end:auto!important;
    left:0!important;right:auto!important;
    transform:translateX(calc(-100% - 24px))!important;
  }
  html[dir="rtl"] .docs-sidebar{
    left:auto!important;right:0!important;
    transform:translateX(calc(100% + 24px))!important;
  }
  .docs-sidebar.open{transform:translateX(0)!important}
}

/* DocMaker 8.9.15 — readable JSON, responsive header and dark theme. */
.theme-changing *, .theme-changing *::before, .theme-changing *::after { transition:none!important; animation-duration:0s!important; }
.dev-theme-toggle {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.10);
  cursor: pointer;
}
.dev-theme-toggle .theme-toggle-label { font-size: 13px; font-weight: 850; }
[data-theme="dark"] .dev-theme-toggle { color:#fde68a; border-color:rgba(251,191,36,.4); background:rgba(251,191,36,.12); }
[data-theme="dark"] .dev-theme-toggle i { color:#fbbf24; filter:drop-shadow(0 0 6px rgba(251,191,36,.35)); }

/* Inline code remains rose; code inside PRE is always high contrast and never gets a red pill background. */
.docs-section pre code,
.docs-intro pre code,
.response-schema pre code,
.code-panel pre code,
.module-code pre code,
.request-output pre code {
  display: block;
  padding: 0 !important;
  color: #e8f1fb !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  text-shadow: none !important;
}
.response-schema .json-example {
  color: #e8f1fb !important;
  background: linear-gradient(145deg,#0b1220,#111c2c) !important;
  box-shadow: inset 4px 0 #359a7e;
}
.response-schema .json-example::selection,
.response-schema .json-example *::selection { color:#fff; background:rgba(38,87,164,.58); }

.dev-header-actions > a,
.dev-language > button,
.dev-theme-toggle {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.dev-header-actions > a:hover,
.dev-language > button:hover,
.dev-theme-toggle:hover { transform:translateY(-1px); background:rgba(255,255,255,.17); border-color:rgba(255,255,255,.34); }
.dev-header-actions > a i { font-size: 15px; }

[data-theme="dark"] {
  --docs-bg:#08111f;
  --docs-surface:#111b2a;
  --docs-text:#e8eef6;
  --docs-muted:#a6b3c3;
  --docs-border:#29384b;
  --docs-code:#07101c;
  --docs-shadow:0 14px 34px rgba(0,0,0,.24);
  color-scheme:dark;
}
[data-theme="dark"] body { background:var(--docs-bg); color:var(--docs-text); }
[data-theme="dark"] :is(.docs-facts span,.endpoint-reference article,.docs-table-wrap,.response-schema,.module-preview,.request-tester) { color:var(--docs-text); border-color:var(--docs-border); background:var(--docs-surface); }
[data-theme="dark"] :is(.docs-section h2,.docs-intro h2,.docs-intro h1,.module-preview-head) { color:#f8fafc; }
[data-theme="dark"] .docs-sidebar { border-color:var(--docs-border); }
[data-theme="dark"] .docs-sidebar :is(a,.docs-sidebar-head,.docs-nav-group>strong) { color:#b7c4d2; }
[data-theme="dark"] .docs-sidebar a:hover,
[data-theme="dark"] .docs-sidebar a.active { color:#fff; background:#162a48; }
[data-theme="dark"] .docs-nav-group { border-color:var(--docs-border); }
[data-theme="dark"] .docs-sidebar-note { color:#bed8d3; border-color:#28534e; background:#102b2a; }
[data-theme="dark"] .dev-language-menu { color:var(--docs-text); border-color:var(--docs-border); background:var(--docs-surface); }
[data-theme="dark"] .dev-language-menu a:hover { background:#1d2a3b; }
[data-theme="dark"] .docs-callout.info { border-color:#25456e; background:#101f35; }
[data-theme="dark"] .docs-callout.warning { border-color:#6a5424; background:#2a220f; }
[data-theme="dark"] .docs-callout p { color:#b5c2d0; }
[data-theme="dark"] .docs-reference-table th { color:#c1ccda; background:#172334; }
[data-theme="dark"] .docs-reference-table th,
[data-theme="dark"] .docs-reference-table td { border-color:var(--docs-border); }
[data-theme="dark"] .docs-reference-table code { color:#93c5fd; background:#14233a; }
[data-theme="dark"] .response-schema-tree { border-color:var(--docs-border); background:#0e1826; }
[data-theme="dark"] .response-schema-tree span { border-color:var(--docs-border); }
[data-theme="dark"] .response-schema-tree b { color:#dbeafe; }
[data-theme="dark"] .module-preview-stage { background:#0d1725; }
[data-theme="dark"] .dev-footer { color:#bdc9d6; border-color:var(--docs-border); background:#0c1624; }

@media (max-width: 820px) {
  .dev-header-actions { gap:7px; }
  .dev-status { display:none; }
  .dev-header-actions > a,
  .dev-language > button,
  .dev-theme-toggle { min-width:48px!important; width:auto!important; min-height:48px!important; padding:0 11px!important; }
  .dev-header-actions > a span,
  .dev-theme-toggle .theme-toggle-label { display:inline!important; }
}
@media (max-width: 640px) {
  :root { --docs-header-height: 194px; }
  .dev-header {
    grid-template-columns:48px minmax(0,1fr) !important;
    grid-template-rows:52px 54px 58px !important;
    gap:8px !important;
  }
  .dev-nav-toggle { grid-column:1; grid-row:1; }
  .dev-brand { grid-column:2; grid-row:1; }
  .dev-header-actions {
    grid-column:1/-1 !important;
    grid-row:2 !important;
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .dev-header-actions > a,
  .dev-language,
  .dev-language > button,
  .dev-theme-toggle { width:100%!important; min-width:0!important; }
  .dev-header-actions > a span,
  .dev-theme-toggle .theme-toggle-label { display:inline!important; }
  .dev-search { grid-column:1/-1!important; grid-row:3!important; }
}
@media (max-width: 390px) {
  .dev-header-actions > a span,
  .dev-theme-toggle .theme-toggle-label { font-size:12px; }
  .dev-header-actions > a,
  .dev-theme-toggle,
  .dev-language > button { padding-inline:6px!important; }
}
.dev-language > button{width:auto;min-width:112px;padding:0 12px}.dev-language > button span{font-size:13px;font-weight:850;white-space:nowrap}
@media(max-width:640px){.dev-language > button{min-width:0}.dev-language > button span{font-size:12px}}

/* DocMaker 8.9.15.2 — compact developer header controls. */
.dev-header {
  grid-template-columns: auto minmax(220px, 420px) auto !important;
  gap: clamp(12px, 2vw, 24px) !important;
}
.dev-search {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
  min-width: 220px;
  justify-self: center;
  flex: 0 1 420px;
}
.dev-header-actions {
  width: max-content;
  flex: 0 0 auto;
  gap: 8px;
}
.dev-header-actions > .dev-home-button,
.dev-language > button,
.dev-theme-toggle {
  position: relative;
  width: 72px !important;
  min-width: 72px !important;
  height: 58px !important;
  min-height: 58px !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 8px !important;
  border-radius: 12px;
  line-height: 1.1;
  white-space: nowrap;
}
.dev-header-actions > .dev-home-button i,
.dev-theme-toggle > i {
  font-size: 17px;
  line-height: 1;
}
.dev-header-actions > .dev-home-button span,
.dev-theme-toggle .theme-toggle-label,
.dev-language-name {
  display: block !important;
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: 11px !important;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dev-theme-toggle.is-dark {
  width: 72px !important;
  min-width: 72px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 5px 8px !important;
}
.dev-language-flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
}
.dev-language-flag img {
  width: 30px !important;
  height: 20px !important;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px !important;
  object-fit: cover;
}
.dev-language-flag > i {
  position: absolute;
  inset-inline-end: -12px;
  top: 7px;
  font-size: 8px;
  opacity: .8;
}

@media (max-width: 1180px) {
  .dev-header {
    grid-template-columns: auto minmax(190px, 340px) auto !important;
    gap: 12px !important;
  }
  .dev-search {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    min-width: 190px;
  }
  .dev-status { display: none !important; }
}

@media (max-width: 820px) {
  :root { --docs-header-height: 148px; }
  .dev-header {
    grid-template-columns: 52px minmax(0, 1fr) auto !important;
    grid-template-rows: 62px 58px !important;
    align-items: center;
  }
  .dev-search {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
  .dev-header-actions > .dev-home-button,
  .dev-language > button,
  .dev-theme-toggle,
  .dev-theme-toggle.is-dark {
    width: 64px !important;
    min-width: 64px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 4px 6px !important;
  }
}

@media (max-width: 640px) {
  :root { --docs-header-height: 206px; }
  .dev-header {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    grid-template-rows: 52px 58px 58px !important;
    gap: 8px !important;
  }
  .dev-nav-toggle { grid-column: 1; grid-row: 1; }
  .dev-brand { grid-column: 2; grid-row: 1; }
  .dev-header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .dev-header-actions > .dev-home-button,
  .dev-language,
  .dev-language > button,
  .dev-theme-toggle,
  .dev-theme-toggle.is-dark {
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    min-height: 54px !important;
  }
  .dev-search {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    min-height: 52px;
  }
  .dev-language-menu {
    width: min(250px, calc(100vw - 24px));
  }
}

@media (max-width: 390px) {
  .dev-header-actions > .dev-home-button span,
  .dev-theme-toggle .theme-toggle-label,
  .dev-language-name { font-size: 10px !important; }
}


/* DocMaker 8.9.15.3 — keep icon and label optically centered in both themes. */
.dev-theme-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.dev-theme-toggle > i,
.dev-theme-toggle .theme-toggle-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.dev-theme-toggle > i { width: 1em; height: 1em; flex: 0 0 auto; }


/* DocMaker 8.9.15.4 — complete content type reference and full home label. */
.dev-header-actions > .dev-home-button {
  width: 92px !important;
  min-width: 92px !important;
}
.dev-header-actions > .dev-home-button span {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}
.content-types-nav a { justify-content:flex-start; gap:8px; }
.content-types-nav a code {
  min-width:0;
  padding:2px 5px;
  border-radius:5px;
  color:#2657a4;
  background:#edf3fb;
  font-size:10px;
  direction:ltr;
}
.content-types-overview { padding-bottom:16px; }
.content-type-common {
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(280px,1.1fr);
  gap:18px;
  margin-top:22px;
  overflow:hidden;
  border:1px solid var(--docs-border);
  border-radius:14px;
  background:var(--docs-surface);
}
.content-type-common pre { margin:0; padding:22px; overflow:auto; color:#e8f1fb; background:linear-gradient(145deg,#0b1220,#111c2c); direction:ltr; text-align:left; }
.content-type-common pre code { display:block; padding:0!important; color:inherit!important; background:transparent!important; font-size:14px!important; line-height:1.9; }
.content-type-common ul { display:grid; gap:0; margin:0; padding:10px 20px; list-style:none; }
.content-type-common li { display:grid; grid-template-columns:90px minmax(0,1fr); gap:12px; padding:12px 0; border-bottom:1px solid var(--docs-border); }
.content-type-common li:last-child { border-bottom:0; }
.content-type-common strong { color:var(--docs-blue); font-family:Consolas,monospace; direction:ltr; }
.content-type-common span { color:var(--docs-muted); font-size:14px; }
.content-type-card {
  margin-top:28px;
  padding:24px;
  border:1px solid var(--docs-border);
  border-radius:16px;
  background:var(--docs-surface);
  box-shadow:0 10px 30px rgba(23,59,105,.06);
}
.content-type-card + .content-type-card { margin-top:20px; }
.content-type-head { display:flex; align-items:center; gap:14px; margin-bottom:12px; }
.content-type-icon { width:48px; height:48px; flex:0 0 48px; display:grid; place-items:center; border-radius:13px; color:#fff; background:linear-gradient(145deg,var(--docs-blue),var(--docs-teal)); box-shadow:0 8px 20px rgba(38,87,164,.2); }
.content-type-head div { min-width:0; }
.content-type-head code { display:inline-flex; margin-bottom:3px; padding:3px 7px; border-radius:6px; color:#1d5d98; background:#eaf2fb; font-size:12px; font-weight:900; direction:ltr; }
.content-type-head h3 { margin:0; color:var(--docs-text); font-size:23px; line-height:1.35; }
.content-type-card > p { margin:0 0 16px; color:var(--docs-muted); font-size:16px; }
.content-type-schema { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:16px; }
.content-type-schema > div { padding:14px 16px; border:1px solid var(--docs-border); border-radius:11px; background:color-mix(in srgb,var(--docs-surface) 88%,#eaf2fb); }
.content-type-schema small { display:block; margin-bottom:5px; color:var(--docs-muted); font-size:12px; }
.content-type-schema strong { display:block; color:var(--docs-text); font-size:14px; font-weight:800; line-height:1.8; }
.content-type-example { overflow:hidden; border:1px solid #29384b; border-radius:12px; background:#0b1422; }
.content-type-example-head { min-height:46px; display:flex; align-items:center; justify-content:space-between; padding:8px 12px; color:#cbd8e6; background:#132033; }
.content-type-example-head span { font-size:13px; font-weight:900; }
.content-type-example-head button { width:38px; height:38px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.1); border-radius:8px; color:#dce7f0; background:rgba(255,255,255,.05); cursor:pointer; }
.content-type-example pre { max-height:460px; margin:0; padding:20px; overflow:auto; color:#e8f1fb; background:linear-gradient(145deg,#0b1220,#111c2c); direction:ltr; text-align:left; }
.content-type-example pre code { display:block; padding:0!important; color:inherit!important; background:transparent!important; font-size:14px!important; line-height:1.85; white-space:pre; }
.content-type-note { display:flex; gap:10px; margin-top:14px; padding:13px 15px; border-inline-start:4px solid var(--docs-teal); border-radius:10px; color:#355c58; background:#eef8f5; }
.content-type-note i { margin-top:5px; color:var(--docs-teal); }
.content-type-note p { margin:0; font-size:14px; }
[data-theme="dark"] .content-types-nav a code { color:#bfdbfe; background:#14233a; }
[data-theme="dark"] .content-type-common,
[data-theme="dark"] .content-type-card,
[data-theme="dark"] .content-type-schema > div { border-color:var(--docs-border); background:var(--docs-surface); }
[data-theme="dark"] .content-type-head code { color:#bfdbfe; background:#14233a; }
[data-theme="dark"] .content-type-note { color:#c4e4de; border-color:#359a7e; background:#102b2a; }
@media(max-width:820px){
  .dev-header-actions > .dev-home-button { width:72px!important; min-width:72px!important; }
  .content-type-common { grid-template-columns:1fr; }
  .content-type-schema { grid-template-columns:1fr; }
}
@media(max-width:640px){
  .dev-header-actions > .dev-home-button { width:100%!important; min-width:0!important; }
  .content-type-card { padding:18px 14px; border-radius:13px; }
  .content-type-head { align-items:flex-start; }
  .content-type-head h3 { font-size:20px; }
  .content-type-card > p { font-size:15px; }
  .content-type-common li { grid-template-columns:1fr; gap:3px; }
  .content-type-example pre { padding:15px; }
  .content-type-example pre code,.content-type-common pre code { font-size:12px!important; }
}

/* DocMaker 8.9.15.5 — exact production catalog renderer and home-label hardening. */
.dev-header-actions > .dev-home-button {
  width: 108px !important;
  min-width: 108px !important;
  flex: 0 0 108px !important;
  overflow: visible !important;
}
.dev-header-actions > .dev-home-button .dev-home-label {
  display: block !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.2 !important;
  word-break: keep-all !important;
}
.exact-catalog-section { scroll-margin-top: calc(var(--docs-header-height) + 24px); }
.exact-renderer-workbench {
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr);
  gap: 18px;
  margin-top: 24px;
}
.exact-renderer-preview,
.exact-renderer-code {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--docs-border);
  border-radius: 16px;
  background: var(--docs-surface);
  box-shadow: var(--docs-shadow);
}
.exact-renderer-preview > header {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 15px;
  color: #fff;
  background: linear-gradient(135deg, #173b69, #2657a4 58%, #236f69);
}
.exact-renderer-preview > header span { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
.exact-renderer-preview > header small { opacity: .82; font-size: 11px; }
.exact-renderer-stage {
  height: 650px;
  overflow: hidden;
  padding: 20px 12px;
  background: #dfe7ef;
}
.exact-renderer-scale {
  width: 794px;
  height: 1123px;
  margin-inline: auto;
  transform: scale(.54);
  transform-origin: top center;
}
.exact-renderer-scale .document-viewer { margin: 0; gap: 0; }
.exact-renderer-scale .doc-page { box-shadow: 0 18px 52px rgba(15,23,42,.23); }
.exact-renderer-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.exact-renderer-details article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--docs-border);
  border-radius: 13px;
  background: var(--docs-surface);
}
.exact-renderer-details article > i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, var(--docs-blue), var(--docs-teal));
}
.exact-renderer-details strong { display: block; margin-bottom: 4px; color: var(--docs-text); font-size: 15px; }
.exact-renderer-details p { margin: 0; color: var(--docs-muted); font-size: 13px; line-height: 1.8; }
.content-type-production-preview {
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid var(--docs-border);
  border-radius: 13px;
  background: #eef3f8;
}
.content-type-production-preview > header {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 13px;
  color: #fff;
  background: linear-gradient(135deg, #173b69, #2657a4 60%, #236f69);
}
.content-type-production-preview > header span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 900; }
.content-type-production-preview > header code { color: #d8eee8; background: rgba(255,255,255,.08); }
.content-type-production-stage {
  min-height: 120px;
  max-height: 460px;
  overflow: auto;
  padding: 22px;
  background: #eef3f8;
}
.exact-docmaker-module {
  min-width: 0;
  color: var(--doc-text, #172033);
  background: var(--doc-surface, #fff);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15,23,42,.08);
}
.exact-docmaker-module .doc-content { min-width: 0; padding: 20px; }
.module-preview-stage .exact-docmaker-module { width: 100%; }
.module-preview-stage .exact-docmaker-module .doc-content { padding: 20px; }
[data-theme="dark"] .exact-renderer-stage,
[data-theme="dark"] .content-type-production-preview,
[data-theme="dark"] .content-type-production-stage { background: #0d1725; }
[data-theme="dark"] .exact-docmaker-module { box-shadow: 0 9px 28px rgba(0,0,0,.28); }

@media (max-width: 1180px) {
  .exact-renderer-workbench { grid-template-columns: 1fr; }
  .exact-renderer-preview { order: -1; }
  .exact-renderer-stage { height: 620px; }
  .exact-renderer-scale { transform: scale(.51); }
}
@media (max-width: 820px) {
  .dev-header-actions > .dev-home-button {
    width: 84px !important;
    min-width: 84px !important;
    flex-basis: 84px !important;
  }
  .exact-renderer-details { grid-template-columns: 1fr; }
  .exact-renderer-stage { height: 530px; padding-inline: 8px; }
  .exact-renderer-scale { transform: scale(.43); }
  .content-type-production-stage { padding: 14px; }
}
@media (max-width: 640px) {
  .dev-header-actions > .dev-home-button {
    width: 100% !important;
    min-width: 0 !important;
    flex-basis: auto !important;
  }
  .dev-header-actions > .dev-home-button .dev-home-label {
    min-width: 0 !important;
    white-space: normal !important;
    font-size: 11px !important;
  }
  .exact-renderer-stage { height: 420px; }
  .exact-renderer-scale { transform: scale(.335); }
  .exact-renderer-preview > header { align-items: flex-start; flex-direction: column; }
  .content-type-production-stage { max-height: 390px; padding: 10px; }
  .exact-docmaker-module .doc-content { padding: 14px; }
}
@media (max-width: 390px) {
  .dev-header-actions > .dev-home-button .dev-home-label { font-size: 10px !important; }
  .exact-renderer-stage { height: 375px; }
  .exact-renderer-scale { transform: scale(.295); }
}


/* DocMaker 8.9.15.6 — centered exact preview and high-contrast code panels. */
.exact-renderer-stage {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  justify-content: center !important;
  direction: ltr;
  width: 100%;
  min-width: 0;
}
.exact-renderer-scale {
  flex: 0 0 794px;
  margin: 0 !important;
  transform-origin: top center !important;
}
.exact-renderer-code {
  background: #101923 !important;
  border-color: #29384b !important;
}
.exact-renderer-code .snippet-tabs {
  background: #182431 !important;
}
.exact-renderer-code pre,
.module-code pre {
  background: linear-gradient(145deg, #0b1220, #111c2c) !important;
  color: #e8f1fb !important;
}
.exact-renderer-code pre code,
.module-code pre code,
.code-panel pre code {
  display: block;
  padding: 0 !important;
  color: #e8f1fb !important;
  background: transparent !important;
  text-shadow: none !important;
  -webkit-text-fill-color: currentColor;
}
[data-theme="dark"] .exact-renderer-code,
[data-theme="dark"] .exact-renderer-code pre,
[data-theme="dark"] .module-code pre {
  background: linear-gradient(145deg, #07101c, #101b2b) !important;
}
