:root {
  color-scheme:light;
  --paper:#fff;
  --sidebar:#f8f9fb;
  --code:#f7f9fc;
  --ink:#202a3a;
  --secondary:#4e5a6d;
  --muted:#758196;
  --line:#e7ebf0;
  --accent:#087fb9;
  --accent-soft:#eaf4fa;
  --sans:'Geist',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --mono:'Geist Mono',ui-monospace,SFMono-Regular,Consolas,monospace;
}
* {
  box-sizing:border-box;
}
html {
  scroll-padding-top:90px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:14px/1.65 var(--sans);
  -webkit-font-smoothing:antialiased;
}
a {
  color:var(--accent);
  text-decoration:none;
}
a:hover {
  text-decoration:underline;
}
button,input {
  font:inherit;
}
button {
  cursor:pointer;
}
button,a,input,summary {
  -webkit-tap-highlight-color:transparent;
}
button:focus-visible,a:focus-visible,input:focus-visible,summary:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:3px;
}
button {
  color:inherit;
}
code,pre,kbd {
  font-family:var(--mono);
}
[hidden] {
  display:none!important;
}
::selection {
  background:#dceff9;
}
.skip-link {
  position:fixed;
  top:-60px;
  left:16px;
  z-index:50;
  background:var(--ink);
  color:white;
  padding:8px 14px;
}
.skip-link:focus {
  top:8px;
}
.site-header {
  height:64px;
  display:flex;
  align-items:center;
  gap:20px;
  padding:0 28px;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  background:var(--paper);
  z-index:20;
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink);
  font-size:19px;
  letter-spacing:-.8px;
  font-weight:650;
  white-space:nowrap;
}
.brand:hover {
  text-decoration:none;
}
.brand img {
  display:block;
}
.brand-accent {
  font-weight:450;
  color:var(--accent);
}
.header-divider {
  height:19px;
  width:1px;
  background:var(--line);
}
.header-label {
  font-size:12px;
  color:var(--secondary);
}
.header-links {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:12px;
}
.header-links a {
  color:var(--secondary);
}
.header-links a span {
  color:var(--muted);
  padding-left:4px;
}
.header-links .console-link {
  border:1px solid var(--line);
  border-radius:6px;
  padding:6px 11px;
  color:var(--ink);
}
.menu-toggle {
  display:none;
  background:white;
  border:1px solid var(--line);
  border-radius:5px;
  padding:5px 10px;
}
.docs-layout {
  display:grid;
  grid-template-columns:264px minmax(0,1fr);
  max-width:1800px;
  margin:auto;
}
.sidebar {
  position:sticky;
  top:64px;
  height:calc(100dvh - 64px);
  overflow-y:auto;
  overscroll-behavior:contain;
  border-right:1px solid var(--line);
  background:var(--sidebar);
  padding:24px 16px 18px;
  scrollbar-width:thin;
}
.search-wrap {
  position:relative;
  margin-bottom:14px;
}
.search-label {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%);
}
.search-wrap input {
  width:100%;
  padding:9px 30px 9px 11px;
  border:1px solid #dfe5ec;
  border-radius:6px;
  background:white;
  color:var(--ink);
  font-size:11px;
  line-height:1.5;
}
.search-wrap input::placeholder {
  color:var(--muted);
}
.search-wrap kbd {
  position:absolute;
  right:9px;
  top:8px;
  border:1px solid var(--line);
  border-radius:3px;
  padding:0 5px;
  color:var(--muted);
  font-size:10px;
  pointer-events:none;
}
input[type=search]::-webkit-search-cancel-button {
  display:none;
}
.search-status {
  font-size:11px;
  color:var(--secondary);
  margin:8px 5px 14px;
}
.docs-nav {
  font-size:12px;
}
.nav-overview {
  padding:7px 9px;
  display:flex;
  justify-content:space-between;
  color:var(--ink);
  border-radius:5px;
  margin-bottom:15px;
}
.nav-overview.active {
  background:var(--accent-soft);
  color:var(--accent);
}
.nav-overview span {
  color:var(--muted);
}
.nav-label {
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--muted);
  font-size:10px;
  letter-spacing:.065em;
  text-transform:uppercase;
  margin:24px 9px 9px;
}
.nav-label span {
  font:10px var(--mono);
  letter-spacing:0;
}
.nav-group {
  margin-bottom:3px;
}
.nav-group summary {
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 8px;
  cursor:pointer;
  font-weight:550;
  line-height:1.4;
  border-radius:5px;
}
.nav-group summary::-webkit-details-marker {
  display:none;
}
.nav-group summary:hover {
  background:#edf0f4;
}
.chevron {
  font-size:18px;
  font-weight:400;
  line-height:14px;
  width:8px;
  color:var(--muted);
  transition:transform .12s;
}
.nav-group[open]>summary .chevron {
  transform:rotate(90deg);
}
.group-count {
  margin-left:auto;
  color:var(--muted);
  font-size:10px;
  font-weight:400;
}
.nav-entries {
  padding:2px 0 5px;
}
.nav-entry {
  display:flex;
  align-items:center;
  gap:7px;
  min-height:32px;
  line-height:1.45;
  padding:7px 8px 7px 22px;
  color:var(--secondary);
  border-radius:4px;
  font-size:11.5px;
}
.nav-entry>span:last-child {
  min-width:0;
  overflow-wrap:anywhere;
}
.nav-entry:hover {
  background:#edf0f4;
  text-decoration:none;
  color:var(--ink);
}
.nav-entry.active {
  color:var(--accent);
  background:var(--accent-soft);
  font-weight:550;
}
.sidebar-footer {
  padding:26px 9px 0;
  margin-top:22px;
  border-top:1px solid var(--line);
  display:grid;
  gap:5px;
  font-size:10px;
  color:var(--muted);
}
.sidebar-footer a {
  color:var(--secondary);
}
.workspace {
  display:grid;
  grid-template-columns:minmax(0,1fr) 224px;
  min-width:0;
  align-items:start;
}
.article {
  min-width:0;
  padding:30px clamp(24px,3.8vw,62px) 36px;
  max-width:1040px;
  width:100%;
  margin:0 auto;
}
.article-meta {
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:34px;
  font-size:10.5px;
}
.breadcrumbs {
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
  color:var(--muted);
}
.breadcrumbs a {
  color:var(--secondary);
}
.markdown-link {
  white-space:nowrap;
  color:var(--muted);
}
h1 {
  font-size:32px;
  line-height:1.2;
  letter-spacing:-1px;
  font-weight:650;
  margin:0 0 18px;
  overflow-wrap:anywhere;
}
h2 {
  font-size:20px;
  line-height:1.4;
  letter-spacing:-.45px;
  font-weight:600;
  margin:38px 0 16px;
  scroll-margin-top:90px;
}
h3 {
  font-size:15px;
  line-height:1.45;
  font-weight:600;
  margin:28px 0 12px;
  scroll-margin-top:90px;
}
.page-description {
  font-size:15px;
  color:var(--secondary);
  line-height:1.75;
  margin:0 0 29px;
  max-width:65ch;
}
.prose {
  font-size:13px;
  color:var(--secondary);
  overflow-wrap:anywhere;
}
.prose>p {
  margin:14px 0;
  max-width:75ch;
}
.prose>h2:first-child {
  margin-top:30px;
}
.prose strong {
  font-weight:600;
  color:var(--ink);
}
.prose h2,.prose h3 {
  color:var(--ink);
}
.prose ul,.prose ol {
  padding-left:21px;
  margin:14px 0;
}
.prose li {
  padding-left:3px;
  margin:7px 0;
}
.prose code {
  font-size:.88em;
  background:#f1f4f7;
  padding:2px 4px;
  border-radius:3px;
  color:#37465d;
  word-break:break-word;
}
.prose pre code {
  background:none;
  padding:0;
  border-radius:0;
  color:inherit;
  word-break:normal;
}
.prose a code {
  color:var(--accent);
}
.prose blockquote,.note {
  margin:22px 0;
  border-left:2px solid #d6a041;
  background:#fffcf4;
  padding:11px 15px;
  font-size:12px;
  color:#6b571f;
}
.prose blockquote p {
  margin:0;
}
.table-wrap {
  width:100%;
  overflow-x:auto;
  margin:20px 0 26px;
  scrollbar-width:thin;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.prose table {
  width:100%;
  border-collapse:collapse;
  font-size:11.5px;
  text-align:left;
  min-width:420px;
  line-height:1.65;
}
.prose th {
  font-size:10px;
  font-weight:550;
  color:var(--muted);
  padding:10px 10px 10px 0;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.prose td {
  padding:12px 10px 12px 0;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.prose tr:last-child td {
  border-bottom:0;
}
.prose td:first-child {
  min-width:90px;
}
.prose td:nth-child(2) {
  min-width:68px;
}
.prose td code {
  white-space:normal;
  overflow-wrap:anywhere;
}
.prose hr {
  border:0;
  border-top:1px solid var(--line);
  margin:32px 0;
}
.article-footer {
  display:flex;
  gap:14px;
  justify-content:space-between;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  margin-top:52px;
  padding-top:20px;
  font-size:10px;
  color:var(--muted);
}
.article-footer a {
  color:var(--secondary);
}
.method {
  display:inline-block;
  flex-shrink:0;
  font:500 9px/1.55 var(--mono);
  border-radius:3px;
  min-width:35px;
  text-align:center;
  padding:1px 4px;
  color:#447186;
  background:#e8f1f6;
}
.method-GET {
  color:#14716f;
  background:#e7f4f1;
}
.method-POST {
  color:#956622;
  background:#fbf1dc;
}
.method-PUT,.method-PATCH {
  color:#426fac;
  background:#edf2fa;
}
.method-DELETE {
  color:#aa4b5d;
  background:#faedf0;
}
.endpoint-address {
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  margin:-1px 0 17px;
}
.endpoint-address .method {
  font-size:10px;
  padding:3px 6px;
}
.endpoint-address>code {
  font-size:12px;
  color:var(--secondary);
  overflow-wrap:anywhere;
}
.unavailable-badge {
  font-size:10px;
  color:#966622;
}
.endpoint-workspace {
  grid-template-columns:minmax(0,1fr) minmax(310px,36%);
}
.endpoint-workspace .article {
  padding-left:clamp(24px,2.6vw,42px);
  padding-right:clamp(24px,2.6vw,42px);
}
.endpoint-workspace h1 {
  font-size:28px;
}
.endpoint-workspace .prose table {
  min-width:390px;
}
.endpoint-workspace .context-panel {
  border-left:1px solid var(--line);
  background:#fafbfd;
  padding:32px 22px;
  min-height:calc(100dvh - 64px);
  max-width:none;
}
.context-panel {
  position:sticky;
  top:64px;
  padding:43px 24px 36px 0;
  max-height:calc(100dvh - 64px);
  overflow-y:auto;
  scrollbar-width:thin;
  font-size:12px;
}
.context-heading {
  font-size:11px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
  color:var(--ink);
}
.page-toc {
  display:grid;
  gap:10px;
  border-left:1px solid var(--line);
  padding-left:13px;
  margin-bottom:34px;
  font-size:11px;
}
.page-toc a {
  color:var(--secondary);
  line-height:1.5;
}
.page-toc a:hover {
  color:var(--accent);
}
.ai-resources {
  border-top:1px solid var(--line);
  padding-top:22px;
  font-size:11px;
}
.eyebrow {
  font-size:10px;
  color:var(--muted);
}
.ai-resources p {
  margin:6px 0 13px;
  color:var(--secondary);
}
.ai-resources a {
  display:block;
  margin-top:9px;
  color:var(--secondary);
}
.ai-resources a span {
  color:var(--muted);
  padding-left:4px;
}
.example-tabs,.response-tabs {
  display:flex;
  gap:17px;
  border-bottom:1px solid var(--line);
  margin-bottom:16px;
  overflow-x:auto;
}
.example-tab,.response-tab {
  background:none;
  border:0;
  border-bottom:2px solid transparent;
  white-space:nowrap;
  padding:3px 0 10px;
  color:var(--muted);
  font-size:11px;
}
.example-tab.active,.response-tab.active {
  color:var(--accent);
  border-bottom-color:var(--accent);
  font-weight:550;
}
.response-tab {
  font-family:var(--mono);
}
.response-section {
  margin-top:34px;
}
.response-section h2 {
  margin-top:0;
}
.response-panel h3:first-child {
  margin-top:22px;
}
.response-panel .code-block {
  display:none;
}
.code-block {
  min-width:0;
  border:1px solid #e3e8ef;
  border-radius:6px;
  background:var(--code);
  overflow:hidden;
  margin:17px 0;
}
.code-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:9px 12px;
  border-bottom:1px solid #e3e8ef;
  color:var(--muted);
  font-size:10px;
}
.copy-code {
  border:0;
  padding:1px 0;
  background:none;
  color:var(--secondary);
  font-size:10px;
}
.copy-code:hover {
  color:var(--accent);
}
pre {
  margin:0;
  padding:16px;
  overflow:auto;
  white-space:pre;
  font:11px/1.85 var(--mono);
  color:#3d4d65;
  tab-size:2;
  scrollbar-width:thin;
}
.context-panel pre {
  font-size:10.5px;
  padding:14px;
}
.example-note {
  color:var(--muted);
  font-size:10.5px;
  line-height:1.75;
  margin:14px 0 26px;
}
.response-example {
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:26px;
}
.status-code {
  font:10px var(--mono);
  color:var(--secondary);
}
.token-key {
  color:#225f99;
}
.token-string {
  color:#267769;
}
.token-number {
  color:#a6652a;
}
.token-keyword {
  color:#8753a4;
}
.token-comment {
  color:#7d8899;
}
.copy-status {
  position:fixed;
  bottom:22px;
  left:50%;
  transform:translateX(-50%);
  max-width:calc(100% - 32px);
  border-radius:6px;
  background:var(--ink);
  color:white;
  padding:10px 17px;
  font-size:12px;
  z-index:40;
  box-shadow:0 3px 14px #202a3a18;
}
@media(min-width:1600px) {
  .endpoint-workspace {
    grid-template-columns:minmax(0,1fr) 420px;
  }
}
@media(max-width:1180px) {
  .docs-layout {
    grid-template-columns:244px minmax(0,1fr);
  }
  .workspace {
    grid-template-columns:minmax(0,1fr);
  }
  .workspace:not(.endpoint-workspace)>.context-panel {
    display:none;
  }
  .endpoint-workspace {
    grid-template-columns:minmax(0,1fr) 310px;
  }
  .article {
    padding-left:32px;
    padding-right:32px;
  }
  .endpoint-workspace .article {
    padding-left:24px;
    padding-right:24px;
  }
  .endpoint-workspace .context-panel {
    padding:30px 16px;
  }
  .endpoint-workspace h1 {
    font-size:26px;
  }
}
@media(max-width:1000px) {
  .endpoint-workspace {
    grid-template-columns:minmax(0,1fr);
  }
  .endpoint-workspace .context-panel {
    position:static;
    max-height:none;
    min-height:0;
    border-left:0;
    border-top:1px solid var(--line);
    padding:28px 32px;
  }
  .endpoint-workspace .article {
    padding:30px 32px;
  }
  .header-links {
    gap:16px;
  }
}
@media(max-width:760px) {
  .site-header {
    height:58px;
    padding:0 18px;
    gap:14px;
  }
  .header-links {
    display:none;
  }
  .header-label {
    font-size:11px;
  }
  .brand {
    font-size:17px;
    gap:7px;
  }
  .brand img {
    width:27px;
    height:27px;
  }
  .menu-toggle {
    display:block;
    margin-left:auto;
    font-size:11px;
  }
  .docs-layout {
    display:block;
  }
  .sidebar {
    display:none;
    position:fixed;
    top:58px;
    left:0;
    width:min(320px,88vw);
    height:calc(100dvh - 58px);
    z-index:25;
    box-shadow:16px 0 32px #202a3a0d;
  }
  .sidebar.is-open {
    display:block;
  }
  .article,.endpoint-workspace .article {
    padding:25px 20px 30px;
  }
  .article-meta {
    margin-bottom:28px;
    font-size:10px;
    gap:8px;
  }
  .breadcrumbs {
    gap:6px;
  }
  h1 {
    font-size:29px;
  }
  .endpoint-workspace h1 {
    font-size:27px;
  }
  h2 {
    font-size:19px;
  }
  .page-description {
    font-size:14px;
  }
  .prose {
    font-size:13px;
  }
  .endpoint-workspace .context-panel {
    padding:25px 20px;
  }
  .article-footer {
    margin-top:36px;
    font-size:9px;
  }
  .prose pre {
    font-size:10.5px;
  }
  .endpoint-address>code {
    font-size:11px;
  }
  .table-wrap {
    max-width:100%;
  }
  .copy-status {
    bottom:16px;
    white-space:normal;
  }
}
@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior:auto!important;
    transition:none!important;
  }
}
.fields-table th:nth-child(3),.fields-table td:nth-child(3) {
  min-width:84px;
  white-space:nowrap;
}
.fields-table th:first-child,.fields-table td:first-child {
  min-width:115px;
}
.fields-table th:nth-child(2),.fields-table td:nth-child(2) {
  min-width:80px;
}
