@charset "UTF-8";
html {
  box-sizing: border-box;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  min-height: 100%;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
}

article, aside, footer, header, main, nav, section {
  display: block;
}

img, video {
  height: auto;
  max-width: 100%;
}

:root {
  --bst-primary: #030146;
  --bst-accent: #ff420e;
  --bst-sidebar-bg: #f5f6fa;
  --bst-sidebar-text: #2d2d48;
  --bst-bg: #ffffff;
  --bst-bg-raised: #f5f6fa;
  --bst-bg-surface: #eef0f5;
  --bst-bg-code: #f8f8fc;
  --bst-text: #2d2d48;
  --bst-text-light: #5f6580;
  --bst-text-strong: #0e0e2c;
  --bst-border: #d8dbe5;
  --bst-border-light: #eef0f5;
  --bst-code-inline-bg: #eef0f5;
  --bst-code-inline-fg: #d63200;
  --bst-link: var(--bst-accent);
  --bst-link-hover: #cc3000;
  --bst-success: #38a169;
  --bst-warning: #d69e2e;
  --bst-danger: #e53e3e;
  --bst-info: #3182ce;
  --bst-shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --bst-shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --bst-shadow-lg: 0 4px 16px rgba(0,0,0,0.10);
  --bst-content-max: 52rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body.bst-body {
  font-family: "Roboto Slab", "Georgia", "Cambria", "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bst-text);
  background: var(--bst-bg);
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  line-height: 1.35;
  color: var(--bst-primary);
  margin-top: 2em;
  margin-bottom: 0.6em;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1 a.headerlink, h2 a.headerlink, h3 a.headerlink, h4 a.headerlink, h5 a.headerlink, h6 a.headerlink {
  font-size: 0.7em;
  color: var(--bst-border);
  text-decoration: none;
  padding-left: 0.3em;
  opacity: 0;
  transition: opacity 0.15s ease, color 0.15s ease;
}
h1:hover a.headerlink, h2:hover a.headerlink, h3:hover a.headerlink, h4:hover a.headerlink, h5:hover a.headerlink, h6:hover a.headerlink {
  opacity: 1;
  color: var(--bst-accent);
}

h1 {
  font-size: 2.25rem;
  margin-top: 0;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.875rem;
  padding-top: 0.4em;
  border-top: 1px solid var(--bst-border-light);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--bst-link);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--bst-link-hover);
  text-decoration: underline;
}
a:visited {
  color: var(--bst-text-light);
}
a:visited:hover {
  color: var(--bst-link-hover);
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--bst-border);
  margin: 2em 0;
}

ul {
  margin-bottom: 1em;
  padding-left: 2em;
  border: none !important;
  border-left: none !important;
  background: none !important;
}

ol {
  margin-bottom: 1em;
  padding-left: 2em;
  border: none !important;
  border-left: none !important;
  background: none !important;
}

li {
  margin-bottom: 0.3em;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

ul, ol, li {
  border-left: none !important;
}

.bst-article__content > section ul, .bst-article__content > .section ul, .bst-article__content > ul {
  list-style: none !important;
}
.bst-article__content > section ul > li, .bst-article__content > .section ul > li, .bst-article__content > ul > li {
  position: relative;
  padding-left: 0.3em;
}
.bst-article__content > section ul > li::before, .bst-article__content > .section ul > li::before, .bst-article__content > ul > li::before {
  content: "■";
  position: absolute;
  left: -1.3em;
  top: 0.15em;
  color: var(--bst-accent);
  font-size: 1.1em;
  line-height: 1;
}
.bst-article__content > section ul ul > li::before, .bst-article__content > .section ul ul > li::before, .bst-article__content > ul ul > li::before {
  content: "▪";
  color: var(--bst-primary);
  font-size: 1em;
}
.bst-article__content > section ul ul ul > li::before, .bst-article__content > .section ul ul ul > li::before, .bst-article__content > ul ul ul > li::before {
  content: "▫";
  color: var(--bst-text-light);
  font-size: 0.95em;
}

dl {
  margin-bottom: 1em;
}
dl dt {
  font-weight: 600;
  margin-top: 1em;
}
dl dd {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 1rem;
  clear: right;
}

th, td {
  padding: 0.6em 0.9em;
  text-align: left;
  border-bottom: 1px solid var(--bst-border);
}

th {
  font-weight: 600;
  background: var(--bst-bg-surface);
  color: var(--bst-text-strong);
  border-bottom-width: 2px;
}

tbody tr:hover {
  background: rgba(128, 128, 128, 0.04);
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  width: 100%;
}
figure a.image-reference {
  display: block;
}
figure {
  margin: 1.5em 0;
  text-align: center;
}
figure figcaption, figure .caption-text {
  font-size: 1rem;
  color: var(--bst-text-light);
  margin-top: 0.5em;
}

blockquote {
  border-left: 3px solid var(--bst-accent);
  padding: 0.5em 1em;
  margin: 1em 0;
  color: var(--bst-text-light);
  background: rgba(128, 128, 128, 0.03);
  border-radius: 0 4px 4px 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(0, 119, 182, 0.18);
  color: var(--bst-text-strong);
}

section {
  display: block;
}

.line-block {
  margin-bottom: 1em;
}
.line-block .line {
  display: block;
  margin-bottom: 0;
}
.line-block .line-block {
  margin-left: 1.5em;
  margin-bottom: 0;
}

.epigraph, .pull-quote {
  border-left: 3px solid var(--bst-accent);
  padding: 0.75em 1.25em;
  margin: 1.5em 2em;
  font-style: italic;
  color: var(--bst-text-light);
  background: rgba(128, 128, 128, 0.03);
  border-radius: 0 4px 4px 0;
}
.epigraph p:last-child, .pull-quote p:last-child {
  margin-bottom: 0;
}
.epigraph .attribution, .pull-quote .attribution {
  font-style: normal;
  text-align: right;
  color: var(--bst-text-light);
  font-size: 1rem;
  margin-top: 0.5em;
}
.epigraph .attribution::before, .pull-quote .attribution::before {
  content: "— ";
}

.pull-quote {
  font-size: 1.1em;
  margin: 2em 3em;
}

.highlights {
  margin: 1em 0;
  padding: 0.75em 1.25em;
  background: var(--bst-bg-raised);
  border-radius: 6px;
}

p.centered {
  text-align: center;
  font-weight: 600;
}

details {
  margin-bottom: 1em;
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  padding: 0.5em 1em;
  background: var(--bst-bg-raised);
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--bst-text-strong);
  padding: 0.3em 0;
}
details summary:hover {
  color: var(--bst-accent);
}
details[open] summary {
  margin-bottom: 0.5em;
  border-bottom: 1px solid var(--bst-border-light);
  padding-bottom: 0.5em;
}

abbr, .abbreviation {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  cursor: help;
}

sup, sub {
  font-size: 0.75em;
}

.align-left {
  float: left;
  margin: 0.25em 1.5em 1em 0;
}

.align-right {
  float: right;
  margin: 0.25em 0 1em 1.5em;
}

.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

div.highlight, div.literal-block-wrapper, pre.literal-block {
  clear: right;
}

.bst-wrapper {
  display: flex;
  min-height: 100vh;
}

.bst-main {
  flex: 1 1 0;
  min-width: 0;
  margin-left: 18rem;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.25s ease;
}

.bst-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 2rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border-bottom: 1px solid var(--bst-border-light);
  background: var(--bst-bg);
}

.bst-header__left {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.bst-header__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.bst-breadcrumbs {
  padding: 0;
  border: none;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: var(--bst-text-light);
  background: none;
}

.bst-breadcrumbs__list {
  list-style: none !important;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bst-breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  position: static;
  padding-left: 0;
  white-space: nowrap;
}
.bst-breadcrumbs__list li::before {
  content: none !important;
  display: none !important;
}
.bst-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5em;
  color: var(--bst-border);
}
.bst-breadcrumbs__list li a {
  color: var(--bst-text-light);
  text-decoration: none;
}
.bst-breadcrumbs__list li a:hover {
  color: var(--bst-link);
}
.bst-breadcrumbs__list li.is-active {
  color: var(--bst-text);
  font-weight: 600;
}

.bst-header__repo {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bst-text-light);
  text-decoration: none;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}
.bst-header__repo:hover {
  background: var(--bst-bg-surface);
  color: var(--bst-text);
  text-decoration: none;
}

.bst-article {
  flex: 1 1 auto;
  padding: 0;
}

.bst-article__content {
  display: flow-root;
  min-width: 0;
  max-width: 100%;
  padding: 2rem 8%;
  padding-bottom: 4rem;
}

.bst-mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  height: 3.25rem;
  background: var(--bst-bg);
  border-bottom: 1px solid var(--bst-border);
  padding: 0 1.25rem;
}

.bst-mobile-bar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.75em;
}

.bst-mobile-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--bst-text-strong);
  text-decoration: none;
}

.bst-mobile-bar__logo {
  height: 2rem;
  width: auto;
}

.bst-hamburger {
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.bst-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bst-text);
  border-radius: 1px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.bst-hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.bst-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.bst-hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.bst-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bst-overlay.is-visible {
  display: block;
  opacity: 1;
}

.bst-theme-toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bst-border);
  border-radius: 4px;
  background: var(--bst-bg);
  color: var(--bst-text-light);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bst-theme-toggle:hover {
  color: var(--bst-accent);
  border-color: var(--bst-accent);
}
.bst-theme-toggle .bst-theme-icon {
  display: none;
}
.bst-theme-toggle .bst-theme-icon--system {
  display: block;
}
.bst-theme-toggle[data-mode=dark] .bst-theme-icon--system {
  display: none;
}
.bst-theme-toggle[data-mode=dark] .bst-theme-icon--dark {
  display: block;
}
.bst-theme-toggle[data-mode=light] .bst-theme-icon--system {
  display: none;
}
.bst-theme-toggle[data-mode=light] .bst-theme-icon--light {
  display: block;
}

.bst-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18rem;
  background: var(--bst-sidebar-bg);
  border-right: 1px solid var(--bst-border);
  z-index: 100;
  transition: transform 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bst-sidebar__scroll {
  flex: 1 1 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding-bottom: 2rem;
}
.bst-sidebar__scroll::-webkit-scrollbar {
  width: 5px;
}
.bst-sidebar__scroll::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.2);
  border-radius: 3px;
}

.bst-sidebar__brand {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--bst-border);
  margin-bottom: 0.25rem;
  text-align: center;
}

.bst-sidebar__brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: var(--bst-text-strong);
  text-decoration: none;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
}
.bst-sidebar__brand-link:hover {
  color: var(--bst-accent);
  text-decoration: none;
}

.bst-sidebar__logo {
  height: 7rem;
  width: auto;
  flex-shrink: 0;
}

.bst-sidebar__logo-icon {
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  color: var(--bst-accent);
}

.bst-sidebar__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bst-sidebar__version {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bst-primary);
  background: rgba(3, 1, 70, 0.08);
  padding: 0.1em 0.5em;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.bst-sidebar__search {
  padding: 0.75rem 1.25rem;
}

.bst-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.bst-search-field__icon {
  position: absolute;
  left: 0.65em;
  color: var(--bst-text-light);
  pointer-events: none;
}

.bst-search-field__input {
  width: 100%;
  padding: 0.45em 0.75em 0.45em 2.1em;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--bst-text);
  background: var(--bst-bg);
  border: 1px solid var(--bst-border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bst-search-field__input::placeholder {
  color: var(--bst-text-light);
}
.bst-search-field__input:focus {
  border-color: var(--bst-accent);
  box-shadow: 0 0 0 3px rgba(255, 66, 14, 0.12);
}

.bst-sidebar__nav {
  padding: 0.25rem 0;
}
.bst-sidebar__nav ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.bst-sidebar__nav li::before {
  content: none !important;
  display: none !important;
}
.bst-sidebar__nav p.caption, .bst-sidebar__nav .caption-text {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bst-text-light);
  padding: 1.2em 1.25rem 0.4em;
  margin: 0;
}
.bst-sidebar__nav a {
  display: block;
  padding: 0.35em 1.25rem;
  font-size: 1rem;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--bst-sidebar-text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.bst-sidebar__nav a:hover {
  background: rgba(128, 128, 128, 0.06);
  color: var(--bst-primary);
  text-decoration: none;
}
.bst-sidebar__nav a:visited {
  color: var(--bst-sidebar-text);
}
.bst-sidebar__nav a.current {
  color: var(--bst-primary);
  font-weight: 600;
  border-left-color: var(--bst-accent);
  background: rgba(3, 1, 70, 0.05);
}
.bst-sidebar__nav li > ul a {
  padding-left: 2.25rem;
  font-size: 0.9375rem;
}
.bst-sidebar__nav li > ul li > ul a {
  padding-left: 3.25rem;
}
.bst-sidebar__nav li > ul > li > ul a {
  padding-left: 4.25rem;
}
.bst-sidebar__nav > ul > li > a {
  font-weight: 600;
}
.bst-sidebar__nav li.current > a {
  color: var(--bst-primary);
  font-weight: 600;
  border-left-color: var(--bst-accent);
  background: rgba(3, 1, 70, 0.05);
}
.bst-sidebar__nav li.current > ul {
  display: block;
}

.bst-toc-toggle {
  position: fixed;
  top: 5rem;
  right: 1.25rem;
  z-index: 60;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bst-border);
  border-radius: 4px;
  background: var(--bst-bg);
  color: var(--bst-text-light);
  cursor: pointer;
  box-shadow: var(--bst-shadow-sm);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.bst-toc-toggle:hover {
  color: var(--bst-accent);
  border-color: var(--bst-accent);
  box-shadow: var(--bst-shadow-md);
}
.bst-toc-toggle .bst-toc-toggle__icon--close {
  display: none;
}
.bst-toc-toggle[aria-expanded=true] .bst-toc-toggle__icon--list {
  display: none;
}
.bst-toc-toggle[aria-expanded=true] .bst-toc-toggle__icon--close {
  display: block;
}

.bst-page-toc {
  position: fixed;
  top: 4rem;
  right: 0;
  z-index: 55;
  width: 14rem;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
  padding: 3rem 1rem 1.5rem 1rem;
  background: color-mix(in srgb, var(--bst-bg) 75%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 1px solid var(--bst-border);
  box-shadow: var(--bst-shadow-md);
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.bst-page-toc.is-collapsed {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  box-shadow: none;
}
.bst-page-toc::-webkit-scrollbar {
  width: 4px;
}
.bst-page-toc::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.15);
  border-radius: 2px;
}

.bst-page-toc__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bst-text-light);
  padding-left: 0.5rem;
  margin-bottom: 0.6em;
}

.bst-page-toc__search {
  padding: 0 0.5rem 0.5em;
}

.bst-page-toc__filter {
  width: 100%;
  padding: 0.3em 0.6em;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: var(--bst-text);
  background: var(--bst-bg-surface);
  border: 1px solid var(--bst-border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease;
}
.bst-page-toc__filter::placeholder {
  color: var(--bst-text-light);
}
.bst-page-toc__filter:focus {
  border-color: var(--bst-accent);
}

.bst-page-toc li.bst-toc-hidden {
  display: none;
}

.bst-page-toc ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.bst-page-toc li {
  margin: 0;
  position: static;
  padding-left: 0;
}
.bst-page-toc li::before {
  content: none !important;
  display: none !important;
}
.bst-page-toc a {
  display: block;
  padding: 0.25em 0.5em 0.25em 0.5rem;
  color: var(--bst-text-light);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.bst-page-toc a:hover {
  color: var(--bst-primary);
  text-decoration: none;
}
.bst-page-toc a.is-active, .bst-page-toc a:focus {
  color: var(--bst-primary);
  border-left-color: var(--bst-accent);
}
.bst-page-toc ul ul a {
  padding-left: 1.25rem;
  font-size: 0.95em;
}

code, tt, kbd {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.875em;
}

:not(pre) > code, :not(pre) > tt {
  background: var(--bst-code-inline-bg);
  color: var(--bst-code-inline-fg);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  word-break: break-word;
}

kbd {
  background: var(--bst-bg-surface);
  border: 1px solid var(--bst-border);
  border-bottom-width: 2px;
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.8em;
  color: var(--bst-text);
}

pre {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  background: var(--bst-bg-code);
  color: var(--bst-text);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  padding: 1em 1.25em;
  margin-bottom: 1.5em;
  overflow-x: auto;
}
pre::-webkit-scrollbar {
  height: 6px;
}
pre::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.15);
  border-radius: 3px;
}

div.highlight, div.literal-block-wrapper {
  position: relative;
  margin-bottom: 1.5em;
}
div.highlight pre, div.literal-block-wrapper pre {
  margin-bottom: 0;
}

div.code-block-caption {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bst-text-light);
  background: var(--bst-bg-surface);
  border: 1px solid var(--bst-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 0.4em 1em;
}
div.code-block-caption + div.highlight pre {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.linenodiv pre {
  background: transparent;
  border: none;
  padding-right: 0.75em;
  color: var(--bst-text-light);
  user-select: none;
}

table.highlighttable {
  margin-bottom: 1.5em;
  width: 100%;
}
table.highlighttable td {
  padding: 0;
  border: none;
}
table.highlighttable td.linenos {
  width: 3em;
  vertical-align: top;
  background: var(--bst-bg-surface);
  border-right: 1px solid var(--bst-border);
  border-radius: 6px 0 0 6px;
}
table.highlighttable td.code pre {
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.highlight .hll {
  background: #ffffcc;
}
.highlight .c, .highlight .cm, .highlight .c1, .highlight .cs, .highlight .cp {
  color: #8f5902;
  font-style: italic;
}
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr {
  color: #204a87;
  font-weight: 600;
}
.highlight .kc, .highlight .kd, .highlight .kt {
  color: #204a87;
}
.highlight .o, .highlight .ow {
  color: #ce5c00;
}
.highlight .n {
  color: var(--bst-text);
}
.highlight .na {
  color: #c4a000;
}
.highlight .nb {
  color: #204a87;
}
.highlight .nc, .highlight .no, .highlight .nf, .highlight .nn {
  color: #000000;
}
.highlight .nd {
  color: #5c35cc;
}
.highlight .ne {
  color: #cc0000;
  font-weight: 600;
}
.highlight .nt {
  color: #204a87;
  font-weight: 600;
}
.highlight .nv, .highlight .bp {
  color: #000000;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .sh, .highlight .s2, .highlight .s1, .highlight .se, .highlight .si, .highlight .sx, .highlight .sr, .highlight .ss {
  color: #4e9a06;
}
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo {
  color: #0000cf;
}
.highlight .p {
  color: var(--bst-text);
}
.highlight .w {
  color: #f8f8f8;
}
.highlight .err {
  color: #a40000;
  border-bottom: 1px dotted #ef2929;
}
.highlight .gh {
  color: #000080;
  font-weight: 600;
}
.highlight .gu {
  color: #800080;
  font-weight: 600;
}
.highlight .gd {
  color: #a40000;
}
.highlight .gi {
  color: #00a000;
}

.admonition {
  border-radius: 6px !important;
  margin-bottom: 1.5em !important;
  padding: 0 !important;
  border: 1px solid var(--bst-border) !important;
  border-left: 1px solid var(--bst-border) !important;
  overflow: hidden !important;
  background: var(--bst-bg) !important;
  color: var(--bst-text) !important;
  clear: none !important;
  line-height: 1.7 !important;
}
.admonition > .admonition-title {
  display: flex !important;
  align-items: center !important;
  gap: 0.45em !important;
  margin: 0 !important;
  padding: 0.4em 1em !important;
  background: var(--bst-text-light) !important;
  color: #ffffff !important;
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: 0 !important;
}
.admonition > .admonition-title::before {
  content: "" !important;
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  flex-shrink: 0 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
  font-family: inherit !important;
}
.admonition > p:not(.admonition-title),
.admonition > ul, .admonition > ol, .admonition > dl, .admonition > div, .admonition > pre,
.admonition > blockquote, .admonition > table {
  padding-left: 1em;
  padding-right: 1em;
}
.admonition > p:not(.admonition-title):first-of-type {
  padding-top: 0.7em;
}
.admonition > :last-child {
  padding-bottom: 0.7em;
  margin-bottom: 0 !important;
}

.admonition.note, .admonition.seealso {
  background: color-mix(in srgb, var(--bst-primary) 3%, var(--bst-bg)) !important;
}
.admonition.note > .admonition-title, .admonition.seealso > .admonition-title {
  background: var(--bst-primary) !important;
}

.admonition.warning, .admonition.caution, .admonition.attention,
.admonition.danger, .admonition.error {
  background: color-mix(in srgb, var(--bst-accent) 3%, var(--bst-bg)) !important;
}
.admonition.warning > .admonition-title, .admonition.caution > .admonition-title, .admonition.attention > .admonition-title,
.admonition.danger > .admonition-title, .admonition.error > .admonition-title {
  background: var(--bst-accent) !important;
}
.admonition.warning > .admonition-title::before, .admonition.caution > .admonition-title::before, .admonition.attention > .admonition-title::before,
.admonition.danger > .admonition-title::before, .admonition.error > .admonition-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
}

.admonition.important {
  background: color-mix(in srgb, var(--bst-accent) 3%, var(--bst-bg)) !important;
}
.admonition.important > .admonition-title {
  background: var(--bst-accent) !important;
}

.admonition.tip, .admonition.hint {
  background: color-mix(in srgb, var(--bst-text-light) 3%, var(--bst-bg)) !important;
}
.admonition.tip > .admonition-title::before, .admonition.hint > .admonition-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M11 3a1 1 0 10-2 0v1a1 1 0 102 0V3zM15.657 5.757a1 1 0 00-1.414-1.414l-.707.707a1 1 0 001.414 1.414l.707-.707zM18 10a1 1 0 01-1 1h-1a1 1 0 110-2h1a1 1 0 011 1zM5.05 6.464A1 1 0 106.464 5.05l-.707-.707a1 1 0 00-1.414 1.414l.707.707zM4 11a1 1 0 100-2H3a1 1 0 000 2h1zM10 18a8 8 0 100-16 8 8 0 000 16z'/%3E%3C/svg%3E") !important;
}

.admonition.admonition-todo, .admonition-todo {
  background: color-mix(in srgb, var(--bst-accent) 3%, var(--bst-bg)) !important;
}
.admonition.admonition-todo > .admonition-title, .admonition-todo > .admonition-title {
  background: var(--bst-accent) !important;
}

.topic {
  background: var(--bst-bg-raised) !important;
  border: 1px solid var(--bst-border) !important;
  border-radius: 6px !important;
  padding: 1em 1.25em !important;
  margin-bottom: 1.5em !important;
}
.topic p.topic-title {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--bst-primary);
}

.deprecated {
  padding: 0.6em 1em;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1em;
  background: color-mix(in srgb, var(--bst-danger) 8%, var(--bst-bg));
  border-left: 3px solid var(--bst-danger);
}

.versionadded {
  padding: 0.6em 1em;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1em;
  background: color-mix(in srgb, var(--bst-success) 8%, var(--bst-bg));
  border-left: 3px solid var(--bst-success);
}

.versionchanged {
  padding: 0.6em 1em;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1em;
  background: color-mix(in srgb, var(--bst-primary) 8%, var(--bst-bg));
  border-left: 3px solid var(--bst-primary);
}

aside.sidebar, div.sidebar, .sidebar {
  float: right !important;
  clear: right;
  width: 33%;
  max-width: 22rem;
  min-width: 10rem;
  margin: 0.25em 0 1.25em 1.5em !important;
  border: 1px solid var(--bst-border) !important;
  border-radius: 6px !important;
  padding: 1em 1.25em !important;
  background: var(--bst-bg-raised) !important;
  font-size: 1rem;
  overflow: hidden;
}
aside.sidebar p.sidebar-title, div.sidebar p.sidebar-title, .sidebar p.sidebar-title {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 0.6em !important;
  padding: 0 0 0.4em !important;
  border-bottom: 1px solid var(--bst-border);
  color: var(--bst-text-strong);
  background: none !important;
  display: block !important;
}
aside.sidebar p.sidebar-title::before, div.sidebar p.sidebar-title::before, .sidebar p.sidebar-title::before {
  display: none !important;
}
aside.sidebar img, div.sidebar img, .sidebar img {
  display: block !important;
  float: none !important;
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 4px;
  margin: 0.3em auto !important;
}
aside.sidebar a.image-reference, div.sidebar a.image-reference, .sidebar a.image-reference {
  display: block;
  text-decoration: none;
  margin-bottom: 0.5em;
}
aside.sidebar figure, aside.sidebar .figure, div.sidebar figure, div.sidebar .figure, .sidebar figure, .sidebar .figure {
  margin: 0.5em 0;
  text-align: center;
}
aside.sidebar figure img, aside.sidebar .figure img, div.sidebar figure img, div.sidebar .figure img, .sidebar figure img, .sidebar .figure img {
  margin-bottom: 0.4em !important;
}
aside.sidebar figure figcaption, aside.sidebar figure .caption-text, aside.sidebar figure .legend, aside.sidebar .figure figcaption, aside.sidebar .figure .caption-text, aside.sidebar .figure .legend, div.sidebar figure figcaption, div.sidebar figure .caption-text, div.sidebar figure .legend, div.sidebar .figure figcaption, div.sidebar .figure .caption-text, div.sidebar .figure .legend, .sidebar figure figcaption, .sidebar figure .caption-text, .sidebar figure .legend, .sidebar .figure figcaption, .sidebar .figure .caption-text, .sidebar .figure .legend {
  font-size: 0.85rem;
  color: var(--bst-text-light);
  line-height: 1.4;
  text-align: center;
}
aside.sidebar p, div.sidebar p, .sidebar p {
  margin-bottom: 0.6em;
}
aside.sidebar ul, aside.sidebar ol, div.sidebar ul, div.sidebar ol, .sidebar ul, .sidebar ol {
  margin-bottom: 0.6em;
  padding-left: 1.25em;
}
aside.sidebar li, div.sidebar li, .sidebar li {
  margin-bottom: 0.15em;
}
aside.sidebar pre, div.sidebar pre, .sidebar pre {
  font-size: 0.8rem;
  padding: 0.6em 0.8em;
}
aside.sidebar > :last-child, div.sidebar > :last-child, .sidebar > :last-child {
  margin-bottom: 0 !important;
}

dl.py, dl.cpp, dl.c, dl.js, dl.describe, dl.class, dl.function, dl.method, dl.attribute, dl.exception, dl.data, dl.type {
  margin-bottom: 1.5em;
}
dl.py dt, dl.cpp dt, dl.c dt, dl.js dt, dl.describe dt, dl.class dt, dl.function dt, dl.method dt, dl.attribute dt, dl.exception dt, dl.data dt, dl.type dt {
  background: var(--bst-bg-code);
  border: 1px solid var(--bst-border);
  border-radius: 4px;
  padding: 0.5em 0.75em;
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  color: var(--bst-text-strong);
  margin-top: 1.5em;
}
dl.py dt:first-child, dl.cpp dt:first-child, dl.c dt:first-child, dl.js dt:first-child, dl.describe dt:first-child, dl.class dt:first-child, dl.function dt:first-child, dl.method dt:first-child, dl.attribute dt:first-child, dl.exception dt:first-child, dl.data dt:first-child, dl.type dt:first-child {
  margin-top: 0;
}
dl.py dt .property, dl.cpp dt .property, dl.c dt .property, dl.js dt .property, dl.describe dt .property, dl.class dt .property, dl.function dt .property, dl.method dt .property, dl.attribute dt .property, dl.exception dt .property, dl.data dt .property, dl.type dt .property {
  font-style: italic;
  color: var(--bst-text-light);
  margin-right: 0.5em;
}
dl.py dt a.headerlink, dl.cpp dt a.headerlink, dl.c dt a.headerlink, dl.js dt a.headerlink, dl.describe dt a.headerlink, dl.class dt a.headerlink, dl.function dt a.headerlink, dl.method dt a.headerlink, dl.attribute dt a.headerlink, dl.exception dt a.headerlink, dl.data dt a.headerlink, dl.type dt a.headerlink {
  float: right;
}
dl.py dt .descname, dl.py dt .sig-name, dl.cpp dt .descname, dl.cpp dt .sig-name, dl.c dt .descname, dl.c dt .sig-name, dl.js dt .descname, dl.js dt .sig-name, dl.describe dt .descname, dl.describe dt .sig-name, dl.class dt .descname, dl.class dt .sig-name, dl.function dt .descname, dl.function dt .sig-name, dl.method dt .descname, dl.method dt .sig-name, dl.attribute dt .descname, dl.attribute dt .sig-name, dl.exception dt .descname, dl.exception dt .sig-name, dl.data dt .descname, dl.data dt .sig-name, dl.type dt .descname, dl.type dt .sig-name {
  font-weight: 700;
  color: var(--bst-primary);
}
dl.py dt .sig-paren, dl.cpp dt .sig-paren, dl.c dt .sig-paren, dl.js dt .sig-paren, dl.describe dt .sig-paren, dl.class dt .sig-paren, dl.function dt .sig-paren, dl.method dt .sig-paren, dl.attribute dt .sig-paren, dl.exception dt .sig-paren, dl.data dt .sig-paren, dl.type dt .sig-paren {
  color: var(--bst-text-light);
}
dl.py dt .sig-param, dl.cpp dt .sig-param, dl.c dt .sig-param, dl.js dt .sig-param, dl.describe dt .sig-param, dl.class dt .sig-param, dl.function dt .sig-param, dl.method dt .sig-param, dl.attribute dt .sig-param, dl.exception dt .sig-param, dl.data dt .sig-param, dl.type dt .sig-param {
  font-style: italic;
}
dl.py dd, dl.cpp dd, dl.c dd, dl.js dd, dl.describe dd, dl.class dd, dl.function dd, dl.method dd, dl.attribute dd, dl.exception dd, dl.data dd, dl.type dd {
  margin-left: 0;
  padding: 0.75em 0 0.75em 1.5em;
  border-left: 2px solid var(--bst-border-light);
}
dl.py dd > :first-child, dl.cpp dd > :first-child, dl.c dd > :first-child, dl.js dd > :first-child, dl.describe dd > :first-child, dl.class dd > :first-child, dl.function dd > :first-child, dl.method dd > :first-child, dl.attribute dd > :first-child, dl.exception dd > :first-child, dl.data dd > :first-child, dl.type dd > :first-child {
  margin-top: 0;
}

dl.field-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.3em 1em;
  margin-bottom: 1em;
}
dl.field-list dt {
  font-weight: 600;
  margin: 0;
  padding: 0.2em 0;
  color: var(--bst-text-strong);
  white-space: nowrap;
}
dl.field-list dt::after {
  content: ":";
}
dl.field-list dd {
  margin: 0;
  padding: 0.2em 0;
}
dl.field-list dd ul {
  margin: 0;
  padding-left: 1.25em;
}

table.field-list td, table.field-list th {
  border: none;
  padding: 0.3em 0.75em;
}
table.field-list th {
  background: none;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

p.rubric {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bst-text-strong);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

dl.footnote, dl.citation {
  font-size: 1rem;
  margin-bottom: 1em;
  border-left: 3px solid var(--bst-border);
  padding-left: 1em;
}
dl.footnote dt, dl.citation dt {
  float: left;
  font-weight: 700;
  margin-right: 0.5em;
}
dl.footnote dd, dl.citation dd {
  margin-left: 2.5em;
}

a.footnote-reference, a.citation-reference {
  font-size: 0.75em;
  vertical-align: super;
  color: var(--bst-accent);
}

dl.glossary dt {
  font-weight: 700;
  font-size: 1.125rem;
  border-bottom: 1px dotted var(--bst-border);
  padding-bottom: 0.2em;
}

.guilabel, .menuselection {
  font-weight: 600;
  font-size: 0.95em;
  background: var(--bst-code-inline-bg);
  padding: 0.1em 0.4em;
  border: 1px solid var(--bst-border);
  border-radius: 3px;
}

ul.search {
  list-style: none !important;
  padding: 0;
}
ul.search li {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--bst-border-light);
  position: static;
  padding-left: 0;
}
ul.search li::before {
  content: none !important;
  display: none !important;
}
ul.search li a {
  font-size: 1.25rem;
  font-weight: 600;
}
ul.search li .context {
  font-size: 1rem;
  color: var(--bst-text-light);
  margin-top: 0.3em;
}

.highlighted {
  background: color-mix(in srgb, var(--bst-warning) 25%, transparent);
  padding: 0 0.15em;
  border-radius: 2px;
}

div.math {
  overflow-x: auto;
  padding: 0.5em 0;
}

span.eqno {
  float: right;
  color: var(--bst-text-light);
}

div.container {
  margin-bottom: 1em;
}

table.indextable {
  width: 100%;
}
table.indextable td, table.indextable th {
  text-align: left;
  border: none;
  padding: 0.2em 0.5em;
}

.command {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--bst-text-strong);
}

.file {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  font-style: italic;
  color: var(--bst-text);
}
.file::before {
  content: "📄 ";
  font-style: normal;
}

.envvar {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
  color: var(--bst-text-strong);
  background: var(--bst-code-inline-bg);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

kbd, .kbd {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 0.8em;
  background: var(--bst-bg-surface);
  border: 1px solid var(--bst-border);
  border-bottom-width: 2px;
  padding: 0.1em 0.4em;
  border-radius: 3px;
  color: var(--bst-text);
  white-space: nowrap;
}

code.xref {
  background: transparent;
  color: var(--bst-link);
  padding: 0;
  border: none;
  font-weight: 400;
}

.doctest {
  margin-bottom: 1.5em;
}
.doctest pre {
  background: var(--bst-bg-code);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
}

.admonition-todo, .todo {
  border-left-color: var(--bst-info);
  background: color-mix(in srgb, var(--bst-info) 6%, var(--bst-bg));
}
.admonition-todo .admonition-title, .todo .admonition-title {
  color: var(--bst-info);
}

.download {
  font-weight: 600;
}
.download::before {
  content: "⬇ ";
  font-style: normal;
}

a.download {
  color: var(--bst-accent);
}

a.reference {
  color: var(--bst-link);
  text-decoration: none;
}
a.reference:hover {
  color: var(--bst-link-hover);
  text-decoration: underline;
}

a.reference.external::after {
  content: " ↗";
  font-size: 0.75em;
  vertical-align: super;
  color: var(--bst-text-light);
  text-decoration: none;
}

table.option-list, .option-list {
  width: 100%;
  margin-bottom: 1.5em;
}
table.option-list td, table.option-list th, .option-list td, .option-list th {
  padding: 0.4em 0.75em;
  border-bottom: 1px solid var(--bst-border-light);
  vertical-align: top;
}
table.option-list td.option-group, .option-list td.option-group {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1em;
  color: var(--bst-text-strong);
}

.productionlist {
  font-family: "Roboto Mono", "Fira Code", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  margin-bottom: 1.5em;
  background: var(--bst-bg-code);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  padding: 0.75em 1em;
  overflow-x: auto;
}
.productionlist .production {
  display: block;
  padding: 0.15em 0;
}
.productionlist .token {
  color: var(--bst-accent);
  font-weight: 600;
  text-decoration: none;
}

nav.contents, .contents, .topic.contents {
  background: var(--bst-bg-raised);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  padding: 1em 1.25em;
  margin-bottom: 1.5em;
}
nav.contents > p:first-child, nav.contents .topic-title, .contents > p:first-child, .contents .topic-title, .topic.contents > p:first-child, .topic.contents .topic-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5em;
  color: var(--bst-text-strong);
}
nav.contents ul, .contents ul, .topic.contents ul {
  margin-bottom: 0;
  font-size: 1rem;
}

table.genindextable {
  width: 100%;
}
table.genindextable td, table.genindextable th {
  text-align: left;
  border: none;
  padding: 0.2em 0.5em;
}

ul.search li.kind-index {
  border-left: 3px solid var(--bst-info);
  padding-left: 0.75em;
}
ul.search li.kind-object {
  border-left: 3px solid var(--bst-success);
  padding-left: 0.75em;
}
ul.search li.kind-title {
  border-left: 3px solid var(--bst-accent);
  padding-left: 0.75em;
}
ul.search li.kind-text {
  border-left: 3px solid var(--bst-border);
  padding-left: 0.75em;
}

.term {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  color: var(--bst-link);
}

.compound {
  margin-bottom: 1em;
}

a.image-reference {
  display: inline-block;
  text-decoration: none;
}
a.image-reference:hover img {
  box-shadow: var(--bst-shadow-md);
}

.bst-pagination {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.75em;
  padding: 1.25em 2rem;
  border-top: 1px solid var(--bst-border);
  margin-top: auto;
}

.bst-pagination__prev, .bst-pagination__next {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  padding: 0.6em 0.9em;
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  min-width: 0;
  max-width: 50%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.bst-pagination__prev:hover, .bst-pagination__next:hover {
  border-color: var(--bst-accent);
  box-shadow: var(--bst-shadow-sm);
  text-decoration: none;
}
.bst-pagination__prev svg, .bst-pagination__next svg {
  color: var(--bst-text-light);
  flex-shrink: 0;
}

.bst-pagination__next {
  margin-left: auto;
  text-align: right;
}
.bst-pagination__next .bst-pagination__text {
  align-items: flex-end;
}

.bst-pagination__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bst-pagination__label {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bst-text-light);
  line-height: 1.2;
}

.bst-pagination__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bst-primary);
  margin-top: 0.1em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bst-footer {
  padding: 1.5em 2rem;
  border-top: 1px solid var(--bst-border);
  background: var(--bst-bg-raised);
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: var(--bst-text-light);
}

.bst-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}

.bst-footer__text, .bst-footer__powered, .bst-footer__copy {
  margin: 0;
}

.bst-footer__powered a, .bst-footer__copy a {
  color: var(--bst-accent);
}

@media (max-width: 1024px) {
  .bst-sidebar {
    width: 18rem;
    transform: translateX(-100%);
    box-shadow: none;
  }
  .bst-sidebar.is-open {
    transform: translateX(0);
    box-shadow: var(--bst-shadow-lg);
  }
  .bst-main {
    margin-left: 0;
  }
  .bst-mobile-bar {
    display: flex;
  }
  .bst-article__content {
    padding: 1.25rem 4%;
    padding-bottom: 3rem;
  }
  .bst-breadcrumbs {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .bst-pagination {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 0.5em;
  }
  .bst-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .bst-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body.bst-body {
    font-size: 0.9375rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.15rem;
  }
  .bst-article__content {
    padding: 1rem;
    padding-bottom: 2.5rem;
  }
  pre {
    font-size: 0.75rem;
    padding: 0.75em 1em;
    border-radius: 4px;
  }
  table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
  }
  aside.sidebar, div.sidebar, .sidebar {
    float: none !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 1.25em !important;
  }
  aside.sidebar img, div.sidebar img, .sidebar img {
    max-width: 60% !important;
  }
  dl.field-list {
    grid-template-columns: 1fr;
  }
  dl.field-list dt::after {
    content: "";
  }
  .bst-pagination__label {
    display: none;
  }
  .bst-pagination__title {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1440px) {
  .bst-sidebar {
    width: 20rem;
  }
  .bst-main {
    margin-left: 20rem;
  }
}
@media (min-width: 1920px) {
  .bst-article__content {
    max-width: 80%;
  }
}
@media print {
  .bst-sidebar, .bst-mobile-bar, .bst-overlay, .bst-page-toc, .bst-toc-toggle, .bst-theme-toggle, .bst-header, .bst-pagination, .bst-sidebar__search, a.headerlink {
    display: none !important;
  }
  .bst-main {
    margin-left: 0 !important;
  }
  .bst-article__content {
    max-width: 100%;
    padding: 0;
  }
  body.bst-body {
    font-size: 11pt;
    color: #000;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  pre {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
}
.bst-body--landing .bst-sidebar {
  transform: translateX(-100%);
  box-shadow: none;
}
.bst-body--landing .bst-sidebar.is-open {
  transform: translateX(0);
  box-shadow: var(--bst-shadow-lg);
}
.bst-body--landing .bst-main {
  margin-left: 0 !important;
}
.bst-body--landing .bst-mobile-bar {
  display: flex;
}
.bst-body--landing .bst-breadcrumbs {
  display: none !important;
}
.bst-body--landing .bst-page-toc {
  display: none !important;
}
.bst-body--landing .bst-toc-toggle {
  display: none !important;
}

.bst-article--landing {
  display: flex;
  justify-content: center;
}

.bst-article__content--landing {
  max-width: 64rem;
  width: 100%;
  padding: 0 2rem;
  padding-bottom: 4rem;
}
.bst-article__content--landing .bst-landing-hero__logo {
  float: left;
  width: 10rem;
  height: auto;
  margin: 0 2.5rem 1.5rem 0;
  object-fit: contain;
}
.bst-article__content--landing > section:first-child,
.bst-article__content--landing > .section:first-child {
  overflow: visible;
}
.bst-article__content--landing > section > h1:first-child,
.bst-article__content--landing > .section > h1:first-child,
.bst-article__content--landing > h1:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.3em;
  margin-top: 0.5em;
  letter-spacing: -0.02em;
  background: var(--bst-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bst-article__content--landing > section > h1:first-child + p,
.bst-article__content--landing > .section > h1:first-child + p,
.bst-article__content--landing > h1:first-child + p {
  font-size: 1.15rem;
  text-align: left;
  color: var(--bst-text-light);
  margin: 0 0 1.5em;
  line-height: 1.6;
}
.bst-article__content--landing .bst-landing-cards {
  clear: both;
}
.bst-article__content--landing .toctree-wrapper ul {
  list-style: none !important;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin: 1.5em 0;
}
.bst-article__content--landing .toctree-wrapper li {
  margin: 0;
  position: static;
  padding-left: 0;
}
.bst-article__content--landing .toctree-wrapper li::before {
  content: none !important;
  display: none !important;
}
.bst-article__content--landing .toctree-wrapper a {
  display: block;
  padding: 1.25em;
  background: var(--bst-bg-raised);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: var(--bst-text-strong);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.bst-article__content--landing .toctree-wrapper a:hover {
  border-color: var(--bst-accent);
  box-shadow: var(--bst-shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.bst-article__content--landing > section > h2, .bst-article__content--landing > .section > h2 {
  text-align: center;
  border-top: none;
  padding-top: 0;
  margin-top: 3em;
}
.bst-article__content--landing > section > h2::after, .bst-article__content--landing > .section > h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--bst-accent);
  margin: 0.5em auto 0;
  border-radius: 1px;
}
.bst-article__content--landing .bst-marquee {
  max-width: 64rem;
  margin: 4rem auto;
  overflow: hidden;
}

.bst-landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin: 1.5em 0 2.5em;
}

.bst-landing-card {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: 1.4em 1.3em;
  background: var(--bst-bg-raised);
  border: 1px solid var(--bst-border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--bst-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.bst-landing-card:hover {
  border-color: var(--bst-accent);
  box-shadow: var(--bst-shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--bst-text);
}
.bst-landing-card::before {
  content: none !important;
  display: none !important;
}

.bst-landing-card__icon {
  color: var(--bst-accent);
  margin-bottom: 0.2em;
  flex-shrink: 0;
}

.bst-landing-card__title {
  font-family: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bst-text-strong);
}

.bst-landing-card__desc {
  font-size: 1rem;
  color: var(--bst-text-light);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .bst-article__content--landing {
    padding: 0 1.25rem;
  }
  .bst-article__content--landing .bst-landing-hero__logo {
    float: none;
    display: block;
    margin: 1rem auto;
    width: 8rem;
  }
  .bst-article__content--landing > section > h1:first-child, .bst-article__content--landing > .section > h1:first-child, .bst-article__content--landing > h1:first-child {
    font-size: 1.8rem;
    text-align: center;
  }
  .bst-article__content--landing > section > h1:first-child + p, .bst-article__content--landing > .section > h1:first-child + p {
    font-size: 1.05rem;
    text-align: center;
  }
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) {
    --bst-primary: #7b7bbd;
    --bst-accent: #ff6b3d;
    --bst-sidebar-bg: #141428;
    --bst-sidebar-text: #b0b4c8;
    --bst-bg: #0e0e1e;
    --bst-bg-raised: #18182e;
    --bst-bg-surface: #222240;
    --bst-bg-code: #151530;
    --bst-text: #d1d3de;
    --bst-text-light: #8e92a8;
    --bst-text-strong: #f0f0f8;
    --bst-border: #2e2e50;
    --bst-border-light: #222240;
    --bst-code-inline-bg: #222240;
    --bst-code-inline-fg: #ff8a6a;
    --bst-link: #ff6b3d;
    --bst-link-hover: #ff9060;
    --bst-success: #4ade80;
    --bst-warning: #fbbf24;
    --bst-danger: #f87171;
    --bst-info: #60a5fa;
    --bst-shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --bst-shadow-md: 0 2px 8px rgba(0,0,0,0.4);
    --bst-shadow-lg: 0 4px 16px rgba(0,0,0,0.5);
    color-scheme: dark;
  }
}
html[data-theme=dark] {
  --bst-primary: #7b7bbd;
  --bst-accent: #ff6b3d;
  --bst-sidebar-bg: #141428;
  --bst-sidebar-text: #b0b4c8;
  --bst-bg: #0e0e1e;
  --bst-bg-raised: #18182e;
  --bst-bg-surface: #222240;
  --bst-bg-code: #151530;
  --bst-text: #d1d3de;
  --bst-text-light: #8e92a8;
  --bst-text-strong: #f0f0f8;
  --bst-border: #2e2e50;
  --bst-border-light: #222240;
  --bst-code-inline-bg: #222240;
  --bst-code-inline-fg: #ff8a6a;
  --bst-link: #ff6b3d;
  --bst-link-hover: #ff9060;
  --bst-success: #4ade80;
  --bst-warning: #fbbf24;
  --bst-danger: #f87171;
  --bst-info: #60a5fa;
  --bst-shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --bst-shadow-md: 0 2px 8px rgba(0,0,0,0.4);
  --bst-shadow-lg: 0 4px 16px rgba(0,0,0,0.5);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme=light]) .highlight .hll {
    background: rgba(255, 255, 255, 0.06);
  }
  html:not([data-theme=light]) .highlight .c, html:not([data-theme=light]) .highlight .cm, html:not([data-theme=light]) .highlight .c1, html:not([data-theme=light]) .highlight .cs, html:not([data-theme=light]) .highlight .cp {
    color: #6b7280;
  }
  html:not([data-theme=light]) .highlight .k, html:not([data-theme=light]) .highlight .kn, html:not([data-theme=light]) .highlight .kp, html:not([data-theme=light]) .highlight .kr, html:not([data-theme=light]) .highlight .kc, html:not([data-theme=light]) .highlight .kd, html:not([data-theme=light]) .highlight .kt {
    color: #93bbfb;
  }
  html:not([data-theme=light]) .highlight .o, html:not([data-theme=light]) .highlight .ow {
    color: #f0a96e;
  }
  html:not([data-theme=light]) .highlight .na {
    color: #e5c07b;
  }
  html:not([data-theme=light]) .highlight .nb {
    color: #93bbfb;
  }
  html:not([data-theme=light]) .highlight .nc, html:not([data-theme=light]) .highlight .no, html:not([data-theme=light]) .highlight .nf, html:not([data-theme=light]) .highlight .nn {
    color: #e5c890;
  }
  html:not([data-theme=light]) .highlight .nd {
    color: #c4a5e7;
  }
  html:not([data-theme=light]) .highlight .ne {
    color: #f87171;
  }
  html:not([data-theme=light]) .highlight .nt {
    color: #93bbfb;
  }
  html:not([data-theme=light]) .highlight .s, html:not([data-theme=light]) .highlight .sb, html:not([data-theme=light]) .highlight .sc, html:not([data-theme=light]) .highlight .sd, html:not([data-theme=light]) .highlight .sh, html:not([data-theme=light]) .highlight .s2, html:not([data-theme=light]) .highlight .s1, html:not([data-theme=light]) .highlight .se, html:not([data-theme=light]) .highlight .si, html:not([data-theme=light]) .highlight .sx, html:not([data-theme=light]) .highlight .sr, html:not([data-theme=light]) .highlight .ss {
    color: #a6e3a1;
  }
  html:not([data-theme=light]) .highlight .m, html:not([data-theme=light]) .highlight .mf, html:not([data-theme=light]) .highlight .mh, html:not([data-theme=light]) .highlight .mi, html:not([data-theme=light]) .highlight .mo {
    color: #fab387;
  }
  html:not([data-theme=light]) .highlight .err {
    color: #f87171;
    border-bottom-color: #f87171;
  }
  html:not([data-theme=light]) .highlight .gd {
    color: #f87171;
  }
  html:not([data-theme=light]) .highlight .gi {
    color: #a6e3a1;
  }
  html:not([data-theme=light]) .highlight .gh {
    color: #93bbfb;
  }
  html:not([data-theme=light]) .highlight .gu {
    color: #c4a5e7;
  }
}
html[data-theme=dark] .highlight .hll {
  background: rgba(255, 255, 255, 0.06);
}
html[data-theme=dark] .highlight .c, html[data-theme=dark] .highlight .cm, html[data-theme=dark] .highlight .c1, html[data-theme=dark] .highlight .cs, html[data-theme=dark] .highlight .cp {
  color: #6b7280;
}
html[data-theme=dark] .highlight .k, html[data-theme=dark] .highlight .kn, html[data-theme=dark] .highlight .kp, html[data-theme=dark] .highlight .kr, html[data-theme=dark] .highlight .kc, html[data-theme=dark] .highlight .kd, html[data-theme=dark] .highlight .kt {
  color: #93bbfb;
}
html[data-theme=dark] .highlight .o, html[data-theme=dark] .highlight .ow {
  color: #f0a96e;
}
html[data-theme=dark] .highlight .na {
  color: #e5c07b;
}
html[data-theme=dark] .highlight .nb {
  color: #93bbfb;
}
html[data-theme=dark] .highlight .nc, html[data-theme=dark] .highlight .no, html[data-theme=dark] .highlight .nf, html[data-theme=dark] .highlight .nn {
  color: #e5c890;
}
html[data-theme=dark] .highlight .nd {
  color: #c4a5e7;
}
html[data-theme=dark] .highlight .ne {
  color: #f87171;
}
html[data-theme=dark] .highlight .nt {
  color: #93bbfb;
}
html[data-theme=dark] .highlight .s, html[data-theme=dark] .highlight .sb, html[data-theme=dark] .highlight .sc, html[data-theme=dark] .highlight .sd, html[data-theme=dark] .highlight .sh, html[data-theme=dark] .highlight .s2, html[data-theme=dark] .highlight .s1, html[data-theme=dark] .highlight .se, html[data-theme=dark] .highlight .si, html[data-theme=dark] .highlight .sx, html[data-theme=dark] .highlight .sr, html[data-theme=dark] .highlight .ss {
  color: #a6e3a1;
}
html[data-theme=dark] .highlight .m, html[data-theme=dark] .highlight .mf, html[data-theme=dark] .highlight .mh, html[data-theme=dark] .highlight .mi, html[data-theme=dark] .highlight .mo {
  color: #fab387;
}
html[data-theme=dark] .highlight .err {
  color: #f87171;
  border-bottom-color: #f87171;
}
html[data-theme=dark] .highlight .gd {
  color: #f87171;
}
html[data-theme=dark] .highlight .gi {
  color: #a6e3a1;
}
html[data-theme=dark] .highlight .gh {
  color: #93bbfb;
}
html[data-theme=dark] .highlight .gu {
  color: #c4a5e7;
}
