:root {
  color-scheme: dark;
  --docs-bg: #080b10;
  --docs-surface: #0d1118;
  --docs-surface-2: #121823;
  --docs-line: #202938;
  --docs-line-strong: #344154;
  --docs-text: #eef3f8;
  --docs-muted: #93a1b4;
  --docs-subtle: #68778b;
  --docs-accent: #27c2d1;
  --docs-accent-soft: rgba(39, 194, 209, .12);
  --docs-green: #52cf8b;
  --docs-amber: #f2b75b;
  --docs-pink: #e18ad4;
  --docs-code: #07090d;
  --docs-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  --docs-topbar-height: 64px;
}

:root[data-docs-theme="light"] {
  color-scheme: light;
  --docs-bg: #f5f7fa;
  --docs-surface: #ffffff;
  --docs-surface-2: #eef2f6;
  --docs-line: #dce3eb;
  --docs-line-strong: #bec9d5;
  --docs-text: #16202d;
  --docs-muted: #57677a;
  --docs-subtle: #748398;
  --docs-accent: #087f8c;
  --docs-accent-soft: rgba(8, 127, 140, .1);
  --docs-green: #16894f;
  --docs-amber: #9b650d;
  --docs-pink: #a84b98;
  --docs-code: #111820;
  --docs-shadow: 0 16px 40px rgba(22, 32, 45, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--docs-bg);
}

body.developer-docs-page {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--docs-bg);
  color: var(--docs-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.6;
}

body.developer-docs-page a {
  color: inherit;
  text-decoration: none;
}

body.developer-docs-page button,
body.developer-docs-page input {
  font: inherit;
  letter-spacing: 0;
}

body.developer-docs-page button,
body.developer-docs-page a,
body.developer-docs-page input {
  -webkit-tap-highlight-color: transparent;
}

.docs-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--docs-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  border-bottom: 1px solid var(--docs-line);
  background: color-mix(in srgb, var(--docs-bg) 92%, transparent);
  backdrop-filter: blur(16px);
}

.docs-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.docs-brand img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: contain;
}

.docs-brand span {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-brand b {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 1px solid var(--docs-line-strong);
  border-radius: 4px;
  color: var(--docs-muted);
  font-size: 10px;
  font-weight: 700;
}

.docs-topbar-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.docs-search {
  width: min(280px, 27vw);
  height: 36px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-surface);
  color: var(--docs-subtle);
}

.docs-search:focus-within {
  border-color: var(--docs-accent);
  box-shadow: 0 0 0 3px var(--docs-accent-soft);
}

.docs-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--docs-text);
}

.docs-search input::placeholder {
  color: var(--docs-subtle);
}

.docs-search kbd {
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--docs-line);
  border-bottom-color: var(--docs-line-strong);
  border-radius: 4px;
  background: var(--docs-surface-2);
  color: var(--docs-subtle);
  font-family: inherit;
  font-size: 11px;
}

.docs-key-link,
.docs-console-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.docs-key-link {
  border: 1px solid var(--docs-line);
  background: var(--docs-surface);
}

.docs-console-link {
  border: 1px solid var(--docs-accent);
  background: var(--docs-accent);
  color: #041014 !important;
}

.docs-icon-button {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-surface);
  color: var(--docs-text);
  cursor: pointer;
}

.docs-icon-button span {
  font-size: 18px;
  line-height: 1;
}

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

.docs-layout {
  width: min(1260px, 100%);
  min-height: calc(100vh - var(--docs-topbar-height));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  margin: 0 auto;
  padding: 0 30px;
}

.docs-sidebar {
  position: sticky;
  top: calc(var(--docs-topbar-height) + 22px);
  align-self: start;
  height: calc(100vh - var(--docs-topbar-height) - 44px);
  display: flex;
  flex-direction: column;
  padding: 6px 0 22px;
  border-right: 1px solid var(--docs-line);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--docs-line-strong) transparent;
}

.docs-version-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-right: 22px;
  padding: 10px 7px 14px;
  color: var(--docs-subtle);
  font-size: 12px;
}

.docs-version-row b {
  color: var(--docs-green);
  font-weight: 700;
}

.docs-sidebar nav {
  display: grid;
  gap: 2px;
  padding-right: 22px;
}

.docs-sidebar nav a {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-left: 2px solid transparent;
  border-radius: 0 5px 5px 0;
  color: var(--docs-muted);
  font-size: 13px;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.docs-sidebar nav a:hover,
.docs-sidebar nav a.is-active {
  border-left-color: var(--docs-accent);
  background: var(--docs-accent-soft);
  color: var(--docs-text);
}

.docs-sidebar-footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding: 18px 22px 0 9px;
  border-top: 1px solid var(--docs-line);
  color: var(--docs-subtle);
  font-size: 12px;
}

.docs-sidebar-footer a {
  color: var(--docs-accent);
  font-weight: 650;
}

.docs-content {
  width: min(860px, 100%);
  min-width: 0;
  padding: 62px 0 46px;
}

.docs-section {
  min-width: 0;
  padding: 0 0 58px;
  margin: 0 0 58px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-section[hidden] {
  display: none !important;
}

.docs-intro {
  padding-top: 8px;
}

.docs-eyebrow,
.docs-section-heading > span {
  color: var(--docs-accent);
  font-size: 11px;
  font-weight: 760;
}

.docs-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.docs-eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--docs-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--docs-green) 16%, transparent);
}

.docs-intro h1 {
  margin: 15px 0 14px;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 780;
}

.docs-lead {
  max-width: 700px;
  margin: 0;
  color: var(--docs-muted);
  font-size: 17px;
  line-height: 1.8;
}

.docs-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.docs-status-line span {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid var(--docs-line);
  border-radius: 5px;
  background: var(--docs-surface);
  color: var(--docs-muted);
  font-size: 11px;
  font-weight: 680;
}

.docs-status-line .is-live {
  color: var(--docs-green);
}

.docs-status-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.docs-base-url {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 14px 15px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-surface);
}

.docs-base-url > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.docs-base-url small {
  color: var(--docs-subtle);
  font-size: 11px;
}

.docs-base-url code {
  overflow-wrap: anywhere;
  color: var(--docs-text);
  font-size: 14px;
}

.docs-base-url button,
.docs-code-head button {
  flex: 0 0 auto;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--docs-line-strong);
  border-radius: 5px;
  background: transparent;
  color: var(--docs-muted);
  cursor: pointer;
  font-size: 12px;
}

.docs-section-heading {
  margin-bottom: 24px;
}

.docs-section-heading h2 {
  margin: 7px 0 8px;
  font-size: 27px;
  line-height: 1.28;
}

.docs-section-heading p,
.docs-endpoint-summary,
.docs-field-footnote {
  margin: 0;
  color: var(--docs-muted);
}

.docs-quickstart ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--docs-line);
}

.docs-quickstart li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--docs-line);
}

.docs-quickstart li > b {
  color: var(--docs-accent);
  font-size: 12px;
}

.docs-quickstart strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.docs-quickstart p {
  margin: 0;
  color: var(--docs-muted);
}

.docs-table-head,
.docs-availability-table > div,
.docs-field-table > div,
.docs-error-table > div {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-availability-table > div > *,
.docs-field-table > div > *,
.docs-error-table > div > * {
  min-width: 0;
}

.docs-availability-table code,
.docs-field-table code,
.docs-error-table code {
  overflow-wrap: anywhere;
}

.docs-availability-table,
.docs-field-table,
.docs-error-table {
  overflow: hidden;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-surface);
}

.docs-availability-table > div {
  grid-template-columns: minmax(150px, .8fr) 104px minmax(0, 1.4fr);
}

.docs-field-table > div {
  grid-template-columns: 105px 76px 48px minmax(0, 1fr);
}

.docs-error-table > div {
  grid-template-columns: 70px minmax(130px, .65fr) minmax(0, 1.4fr);
}

.docs-table-head {
  background: var(--docs-surface-2);
  color: var(--docs-subtle);
  font-size: 11px;
  font-weight: 700;
}

.docs-availability-table p,
.docs-field-table p,
.docs-error-table p {
  min-width: 0;
  margin: 0;
  color: var(--docs-muted);
  overflow-wrap: anywhere;
}

.docs-field-table b {
  color: var(--docs-green);
  font-size: 12px;
}

.docs-badge,
.docs-method {
  width: max-content;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 760;
}

.docs-badge.is-beta {
  color: var(--docs-green);
  background: color-mix(in srgb, var(--docs-green) 9%, transparent);
}

.docs-badge.is-soon {
  color: var(--docs-pink);
  background: color-mix(in srgb, var(--docs-pink) 9%, transparent);
}

.docs-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--docs-accent);
  background: var(--docs-accent-soft);
}

.docs-notice.is-warning {
  border-left-color: var(--docs-amber);
  background: color-mix(in srgb, var(--docs-amber) 9%, transparent);
}

.docs-notice strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.docs-notice p {
  margin: 0;
  color: var(--docs-muted);
}

.docs-notice code,
.docs-field-table code,
.docs-error-table code,
.docs-response-grid code,
.docs-model-note code {
  color: var(--docs-accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .92em;
}

.docs-endpoint-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.docs-endpoint-heading > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-method {
  color: #071013;
  border-color: var(--docs-accent);
  background: var(--docs-accent);
}

.docs-endpoint-heading code {
  min-width: 0;
  color: var(--docs-text);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.docs-code-tabs {
  display: flex;
  gap: 2px;
  margin-top: 22px;
  border-bottom: 1px solid var(--docs-line);
}

.docs-code-tabs button {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--docs-muted);
  cursor: pointer;
  font-size: 12px;
}

.docs-code-tabs button[aria-selected="true"] {
  border-bottom-color: var(--docs-accent);
  color: var(--docs-text);
}

.docs-code-block {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-code);
  box-shadow: var(--docs-shadow);
}

.docs-code-samples {
  margin-top: 0;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.docs-code-head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 12px 0 15px;
  border-bottom: 1px solid #232d38;
  color: #8796a8;
  font-size: 10px;
  font-weight: 700;
}

.docs-code-head button {
  border-color: #344150;
  color: #b5c0cc;
}

.docs-code-block pre {
  min-width: 0;
  margin: 0;
  padding: 18px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #3b4754 transparent;
}

.docs-code-block code {
  color: #dbe6ef;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12.5px;
  line-height: 1.75;
  white-space: pre;
}

.docs-field-footnote {
  margin-top: 12px;
  font-size: 12px;
}

.docs-response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  overflow: hidden;
}

.docs-response-grid > div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--docs-line);
  border-bottom: 1px solid var(--docs-line);
  background: var(--docs-surface);
}

.docs-response-grid > div:nth-child(2n) {
  border-right: 0;
}

.docs-response-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.docs-response-grid p {
  margin: 5px 0 0;
  color: var(--docs-muted);
}

.docs-model-note {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--docs-line);
}

.docs-model-note:last-child {
  border-bottom: 1px solid var(--docs-line);
}

.docs-model-note > div {
  min-width: 0;
}

.docs-model-note p {
  margin: 3px 0 0;
  color: var(--docs-muted);
}

.docs-model-note > a,
.docs-model-note > span {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid var(--docs-line-strong);
  border-radius: 5px;
  color: var(--docs-accent);
  font-size: 12px;
  font-weight: 680;
}

.docs-model-note.is-muted > span {
  color: var(--docs-pink);
}

.docs-billing-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.docs-billing-flow span {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--docs-line);
  border-radius: 5px;
  background: var(--docs-surface);
  white-space: nowrap;
  font-size: 12px;
}

.docs-billing-flow i {
  color: var(--docs-subtle);
  font-style: normal;
}

.docs-security-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--docs-line);
}

.docs-security-list li {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--docs-line);
}

.docs-security-list span {
  color: var(--docs-muted);
}

.docs-page-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--docs-subtle);
  font-size: 12px;
}

.docs-page-footer a {
  margin-left: auto;
  color: var(--docs-accent);
}

.docs-empty-search {
  padding: 36px 18px;
  border: 1px solid var(--docs-line);
  border-radius: 6px;
  background: var(--docs-surface);
  color: var(--docs-muted);
  text-align: center;
}

.docs-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 13px;
  border: 1px solid var(--docs-line-strong);
  border-radius: 6px;
  background: var(--docs-surface-2);
  color: var(--docs-text);
  box-shadow: var(--docs-shadow);
  font-size: 13px;
}

.docs-toast[hidden] {
  display: none;
}

.docs-base-url button:hover,
.docs-code-head button:hover,
.docs-icon-button:hover,
.docs-key-link:hover {
  border-color: var(--docs-accent);
  color: var(--docs-text);
}

body.developer-docs-page :focus-visible {
  outline: 2px solid var(--docs-accent);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .docs-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    padding: 0 22px;
  }

  .docs-topbar {
    padding: 0 18px;
  }

  .docs-search {
    width: min(230px, 25vw);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 112px;
  }

  .docs-sidebar {
    display: none;
  }

  .docs-mobile-nav {
    position: sticky;
    top: var(--docs-topbar-height);
    z-index: 40;
    display: flex;
    gap: 4px;
    padding: 7px 14px;
    overflow-x: auto;
    border-bottom: 1px solid var(--docs-line);
    background: color-mix(in srgb, var(--docs-bg) 94%, transparent);
    scrollbar-width: none;
  }

  .docs-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .docs-mobile-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 5px;
    color: var(--docs-muted);
    font-size: 12px;
  }

  .docs-mobile-nav a:active {
    background: var(--docs-accent-soft);
    color: var(--docs-text);
  }

  .docs-layout {
    display: block;
    padding: 0 22px;
  }

  .docs-content {
    width: 100%;
    padding-top: 44px;
  }
}

@media (max-width: 680px) {
  :root {
    --docs-topbar-height: 106px;
  }

  html {
    scroll-padding-top: calc(var(--docs-topbar-height) + 45px);
  }

  .docs-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 9px 12px;
  }

  .docs-brand {
    min-height: 36px;
  }

  .docs-brand img {
    width: 28px;
    height: 28px;
  }

  .docs-brand span {
    max-width: 34vw;
    font-size: 14px;
  }

  .docs-topbar-actions {
    display: contents;
  }

  .docs-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    height: 36px;
  }

  .docs-key-link,
  .docs-icon-button {
    grid-row: 1;
  }

  .docs-key-link {
    grid-column: 2;
    justify-self: end;
    margin-right: 44px;
  }

  .docs-icon-button {
    position: absolute;
    top: 9px;
    right: 12px;
  }

  .docs-console-link {
    display: none;
  }

  .docs-mobile-nav {
    top: var(--docs-topbar-height);
  }

  .docs-layout {
    padding: 0 15px;
  }

  .docs-content {
    padding-top: 34px;
  }

  .docs-section {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }

  .docs-intro h1 {
    font-size: 35px;
  }

  .docs-lead {
    font-size: 15px;
  }

  .docs-base-url {
    align-items: flex-end;
  }

  .docs-section-heading h2 {
    font-size: 23px;
  }

  .docs-availability-table .docs-table-head,
  .docs-field-table .docs-table-head,
  .docs-error-table .docs-table-head {
    display: none;
  }

  .docs-availability-table > div,
  .docs-field-table > div,
  .docs-error-table > div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 12px;
    padding: 14px;
  }

  .docs-availability-table p,
  .docs-field-table p,
  .docs-error-table p {
    grid-column: 1 / -1;
  }

  .docs-field-table > div > span {
    display: none;
  }

  .docs-field-table > div > b {
    justify-self: end;
  }

  .docs-endpoint-heading {
    align-items: flex-start;
  }

  .docs-endpoint-heading > div {
    align-items: flex-start;
  }

  .docs-endpoint-heading code {
    font-size: 15px;
  }

  .docs-code-block pre {
    padding: 15px;
  }

  .docs-code-block code {
    font-size: 11.5px;
  }

  .docs-response-grid {
    grid-template-columns: 1fr;
  }

  .docs-response-grid > div,
  .docs-response-grid > div:nth-child(2n),
  .docs-response-grid > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--docs-line);
  }

  .docs-response-grid > div:last-child {
    border-bottom: 0;
  }

  .docs-model-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .docs-security-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .docs-page-footer {
    display: grid;
    gap: 4px;
  }

  .docs-page-footer a {
    margin: 6px 0 0;
  }
}

@media (max-width: 390px) {
  .docs-brand b {
    display: none;
  }

  .docs-brand span {
    max-width: 30vw;
  }

  .docs-key-link {
    padding: 0 10px;
    font-size: 12px;
  }

  .docs-base-url {
    display: grid;
  }

  .docs-base-url button {
    justify-self: start;
  }

  .docs-status-line span {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .docs-sidebar nav a {
    transition: none;
  }
}
