:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #20242b;
  background: #fafaf8;
  font-synthesis: none;
  --muted: #606975;
  --line: #dce0e5;
  --paper: #fff;
  --tint: #edf1ff;
  --accent: #315efb;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: var(--accent);
  text-underline-offset: 4px;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.skip {
  position: fixed;
  top: -80px;
  padding: 12px;
  background: var(--paper);
  z-index: 5;
}
.skip:focus {
  top: 10px;
}
.docs-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  border-bottom: 1px solid var(--line);
  padding: 16px 4vw;
  background: var(--paper);
}
.docs-header a {
  text-decoration: none;
}
.brand {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -1px;
}
.brand span {
  font-weight: 400;
  color: var(--muted);
}
.docs-header-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
}
.docs-provenance {
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: var(--tint);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.docs-label {
  font-size: 14px;
}
.docs-label small {
  color: var(--muted);
  margin-left: 12px;
}
.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px) 200px;
  gap: 48px;
  max-width: 1400px;
  margin: auto;
  padding: 48px 32px;
}
.docs-nav,
.docs-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(100vh - 48px);
  overflow: auto;
  font-size: 13px;
}
.docs-nav summary {
  font-weight: 650;
  cursor: pointer;
  margin-bottom: 24px;
}
.docs-nav section {
  margin-bottom: 28px;
}
.docs-nav h2,
.docs-toc h2 {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 10px;
}
.docs-nav a,
.docs-toc a {
  display: block;
  padding: 7px 10px;
  text-decoration: none;
  border-radius: 4px;
}
.docs-nav a:hover,
.docs-toc a:hover {
  background: var(--tint);
}
.docs-nav a[aria-current] {
  background: var(--tint);
  font-weight: 650;
}
.docs-toc .h3 {
  padding-left: 22px;
  font-size: 12px;
}
.docs-toc a {
  line-height: 1.5;
}
main {
  min-width: 0;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
article {
  line-height: 1.8;
  font-size: 15px;
  overflow-wrap: anywhere;
}
article h1 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -1.3px;
  line-height: 1.2;
  margin: 0 0 32px;
  font-weight: 650;
}
article h2 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin: 52px 0 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
article h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 32px 0 14px;
}
article h4 {
  font-size: 16px;
}
article :is(h1, h2, h3, h4) {
  scroll-margin-top: 28px;
}
article p {
  margin: 16px 0;
}
article li {
  margin: 6px 0;
}
article ul,
article ol {
  padding-left: 24px;
}
article code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.86em;
  background: var(--tint);
  padding: 2px 5px;
  border-radius: 3px;
}
article pre {
  background: var(--tint);
  padding: 22px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1.7;
  overflow-wrap: normal;
}
article pre code {
  padding: 0;
  border: 0;
  background: none;
  white-space: pre;
  font-size: 12px;
}
article blockquote {
  margin: 24px 0;
  padding: 1px 20px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}
.table-scroll {
  overflow: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 5px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  line-height: 1.65;
}
th {
  text-align: left;
  background: var(--tint);
  font-weight: 650;
}
td,
th {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  min-width: 150px;
  overflow-wrap: normal;
  vertical-align: top;
}
tr:last-child td {
  border-bottom: 0;
}
article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 36px 0;
}
.adjacent {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 24px;
}
.adjacent a {
  text-decoration: none;
  font-size: 14px;
}
.adjacent a:last-child {
  text-align: right;
}
.adjacent small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 60px;
}
@media (min-width: 901px) {
  .docs-nav summary {
    display: none;
  }
}
@media (max-width: 1150px) {
  .docs-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
  }
  .docs-toc {
    display: none;
  }
}
@media (max-width: 900px) {
  .docs-layout {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    gap: 28px;
  }
  .docs-nav {
    position: static;
    max-height: 230px;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }
  .docs-nav details[open] {
    display: block;
  }
  .docs-nav section {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    padding-right: 10px;
  }
  .docs-nav summary {
    margin-bottom: 16px;
  }
  .docs-header {
    gap: 12px;
    padding: 16px 20px;
    flex-wrap: wrap;
  }
  .docs-label {
    font-size: 12px;
  }
  .docs-label small {
    margin-left: 6px;
  }
  .docs-header > a:last-child {
    font-size: 12px;
  }
  article pre {
    padding: 16px;
  }
  article h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .docs-nav section {
    width: 100%;
    margin-bottom: 16px;
  }
  .docs-nav a {
    padding: 6px 8px;
  }
  .docs-header .docs-label {
    order: 3;
    width: 100%;
  }
  article {
    font-size: 14px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color: #e7ebf3;
    background: #151922;
    --muted: #b0bacb;
    --line: #353e50;
    --paper: #1c2230;
    --tint: #27334d;
    --accent: #9bb5ff;
    color-scheme: dark;
  }
}

.brand {
  color: inherit;
}
