:root {
  --bg: #07101f;
  --sidebar-bg: #091425;
  --panel: #0d1a2d;
  --panel-2: #101f35;
  --panel-3: #142641;
  --line: rgba(139, 177, 240, 0.11);
  --line-strong: rgba(139, 177, 240, 0.28);
  --text: #f3f7fd;
  --muted: #a0aec2;
  --dim: #6f8098;
  --blue: #79a9ff;
  --blue-bright: #4d8df7;
  --green: #7edbad;
  --sidebar: 308px;
  --radius: 18px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 0, rgba(69, 126, 228, 0.11), transparent 29rem),
    var(--bg);
  font-family: "Onest", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.03;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.docs-skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #07101f;
  background: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.docs-skip:focus {
  transform: translateY(0);
}

.docs-mobilebar,
.docs-backdrop {
  display: none;
}

.docs-sidebar {
  position: fixed;
  z-index: 30;
  inset: 0 auto 0 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  width: var(--sidebar);
  padding: 22px 17px 18px;
  border-right: 1px solid var(--line);
  background: rgba(9, 20, 37, 0.94);
  backdrop-filter: blur(22px);
}

.docs-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 8px;
}

.docs-brand img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 7px 16px rgba(54, 111, 216, 0.2));
}

.docs-brand > span {
  display: grid;
  gap: 2px;
}

.docs-brand b {
  font-family: "Unbounded", sans-serif;
  font-size: 0.88rem;
  letter-spacing: -0.04em;
}

.docs-brand small {
  color: #6680aa;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-search {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 27px 0 17px;
  color: var(--dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-search::after {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #6581aa;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.docs-search::before {
  position: absolute;
  z-index: 1;
  right: 11px;
  bottom: 11px;
  width: 6px;
  height: 1.5px;
  background: #6581aa;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.docs-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  background: #0c192b;
  font-family: "Onest", sans-serif;
  font-size: 0.76rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.docs-search input::placeholder {
  color: #596a82;
}

.docs-search input:focus {
  border-color: rgba(121, 169, 255, 0.5);
  background: #101f35;
  box-shadow: 0 0 0 3px rgba(93, 145, 240, 0.07);
}

.docs-nav {
  display: grid;
  align-content: start;
  grid-auto-rows: min-content;
  gap: 5px;
  min-height: 0;
  padding-right: 4px;
  overflow-y: auto;
}

.docs-nav__item {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 11px 12px 11px 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #92a0b4;
  outline: none;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 200ms var(--ease-out);
}

.docs-nav__item::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 170ms ease, transform 170ms ease;
}

.docs-nav__item:hover,
.docs-nav__item:focus-visible {
  border-color: rgba(121, 169, 255, 0.12);
  color: #dfe9f8;
  background: rgba(89, 139, 230, 0.055);
  transform: translateX(2px);
}

.docs-nav__item.is-active {
  border-color: rgba(121, 169, 255, 0.19);
  color: #fff;
  background: linear-gradient(90deg, rgba(70, 124, 222, 0.15), rgba(70, 124, 222, 0.045));
}

.docs-nav__item.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.docs-nav__item span {
  font-size: 0.78rem;
  font-weight: 650;
}

.docs-nav__item small {
  color: #61728a;
  font-size: 0.63rem;
  line-height: 1.4;
  text-wrap: pretty;
}

.docs-nav__item.is-active small {
  color: #7890b2;
}

.docs-search-empty {
  margin: 12px 0;
  color: var(--dim);
  font-size: 0.73rem;
  text-align: center;
}

.docs-sidebar__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 14px;
}

.docs-sidebar__foot a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #8190a6;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.68rem;
  font-weight: 600;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease;
}

.docs-sidebar__foot a:hover,
.docs-sidebar__foot a:focus-visible {
  border-color: var(--line-strong);
  color: #fff;
  background: rgba(83, 136, 231, 0.08);
  outline: none;
}

.docs-main {
  width: calc(100% - var(--sidebar));
  min-height: 100vh;
  margin-left: var(--sidebar);
  padding: clamp(42px, 5vw, 72px) clamp(28px, 6vw, 88px) 40px;
}

.docs-article,
.docs-footer {
  max-width: 910px;
  margin-right: auto;
  margin-left: auto;
}

.docs-article__head {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 350px);
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.docs-kicker {
  margin: 0;
  color: #70829b;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
}

.docs-kicker span {
  color: var(--blue);
}

.docs-description {
  margin: 0;
  color: #7e8da3;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
  text-wrap: balance;
}

.docs-article h1,
.docs-article h2,
.docs-article h3 {
  color: #f5f8fd;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: balance;
  scroll-margin-top: 28px;
}

.docs-article h1 {
  max-width: none;
  margin: 0;
  padding: 38px 40px 42px;
  border: 1px solid rgba(121, 169, 255, 0.14);
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 88% 5%, rgba(94, 149, 247, 0.16), transparent 19rem),
    #0e1c30;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
}

.doc-toc + p,
.docs-article h1 + p {
  margin-top: 0;
}

.docs-article h2 {
  position: relative;
  margin: 55px 0 18px;
  padding: 31px 0 0 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.docs-article h2::before {
  position: absolute;
  top: 35px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(121, 169, 255, 0.08);
  content: "";
}

.docs-article h3 {
  margin: 34px 0 12px;
  font-size: 1.16rem;
}

.docs-article p,
.docs-article li,
.docs-article blockquote {
  color: #aeb9c9;
  font-size: 0.98rem;
  line-height: 1.82;
}

.docs-article p {
  margin: 15px 0;
}

.docs-article > p:first-of-type:not(.docs-kicker):not(.docs-description) {
  margin: 24px 0 0;
  padding: 0;
  color: #b7c5d8;
  font-size: 1.04rem;
}

.docs-article ul,
.docs-article ol {
  display: grid;
  gap: 9px;
  margin: 21px 0;
  padding-left: 25px;
}

.docs-article li {
  padding-left: 4px;
}

.docs-article li::marker {
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.docs-article a {
  color: #8db6ff;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(141, 182, 255, 0.28);
  text-underline-offset: 4px;
}

.docs-article a:hover,
.docs-article a:focus-visible {
  color: #fff;
  text-decoration-color: #8db6ff;
  outline: none;
}

.docs-article code {
  padding: 0.18em 0.43em;
  border: 1px solid rgba(121, 169, 255, 0.13);
  border-radius: 6px;
  color: #a7c6ff;
  background: rgba(85, 139, 235, 0.07);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86em;
}

.docs-article pre {
  position: relative;
  margin: 25px 0;
  padding: 50px 24px 23px;
  overflow-x: auto;
  border: 1px solid rgba(121, 169, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #081423;
  background-size: 100% 31px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 45px rgba(0, 0, 0, 0.13);
}

.docs-article pre::before {
  position: absolute;
  top: 17px;
  left: 23px;
  color: #60738f;
  content: "nimbo / example";
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-article pre code {
  padding: 0;
  border: 0;
  color: #9fd7bd;
  background: transparent;
  font-size: 0.82rem;
  line-height: 1.75;
}

.docs-article blockquote {
  margin: 25px 0;
  padding: 18px 21px;
  border: 1px solid rgba(121, 169, 255, 0.14);
  border-left: 3px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: rgba(75, 131, 230, 0.055);
}

.docs-article table {
  width: 100%;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.83rem;
}

.docs-article th,
.docs-article td {
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.58;
  text-align: left;
  vertical-align: top;
}

.docs-article tr > :last-child {
  border-right: 0;
}

.docs-article tbody tr:last-child td {
  border-bottom: 0;
}

.docs-article thead th {
  color: #eaf1fc;
  background: #12233c;
  font-weight: 650;
}

.docs-article tbody td {
  color: #a6b2c3;
  background: rgba(255, 255, 255, 0.012);
}

.docs-article tbody tr:hover td {
  background: rgba(79, 133, 229, 0.035);
}

.doc-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 12px;
  margin: 0 0 42px;
  padding: 18px 20px;
  border-right: 1px solid rgba(121, 169, 255, 0.14);
  border-bottom: 1px solid rgba(121, 169, 255, 0.14);
  border-left: 1px solid rgba(121, 169, 255, 0.14);
  border-radius: 0 0 24px 24px;
  background: #0b182a;
}

.docs-article h1 + .doc-toc {
  margin-top: 0;
}

.doc-toc__title {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: #657893;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-toc a {
  padding: 7px 9px 7px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 8px 8px 0;
  color: #8998ac;
  font-size: 0.77rem;
  font-weight: 550;
  line-height: 1.4;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.doc-toc a.lvl-h3 {
  padding-left: 21px;
  font-size: 0.72rem;
}

.doc-toc a:hover,
.doc-toc a.is-active {
  border-left-color: var(--blue);
  color: #e8f0fc;
  background: rgba(83, 136, 231, 0.065);
}

.copy-btn {
  position: absolute;
  top: 11px;
  right: 11px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #8292a8;
  background: #0e1c30;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.57rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  border-color: var(--line-strong);
  color: #fff;
  background: #142945;
  outline: none;
}

.docs-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 68px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.docs-pagination a {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 220ms var(--ease-out);
}

.docs-pagination a:hover,
.docs-pagination a:focus-visible {
  border-color: var(--line-strong);
  background: rgba(79, 133, 229, 0.065);
  outline: none;
  transform: translateY(-3px);
}

.docs-pagination a:last-child {
  text-align: right;
}

.docs-pagination small {
  color: #6d7e96;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.57rem;
  text-transform: uppercase;
}

.docs-pagination strong {
  font-size: 0.84rem;
}

.docs-footer {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5f7189;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  text-align: center;
}

.read-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: var(--sidebar);
  width: 0;
  max-width: calc(100% - var(--sidebar));
  height: 2px;
  background: linear-gradient(90deg, #4e8df5, #8eb7ff);
  box-shadow: 0 0 12px rgba(94, 148, 242, 0.4);
  transition: width 80ms linear;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #07101f;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #07101f;
  border-radius: 10px;
  background-clip: padding-box;
  background-color: rgba(104, 147, 218, 0.6);
}

@supports (-moz-appearance: none) {
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(104, 147, 218, 0.6) #07101f;
  }
}

@media (max-width: 900px) {
  body.docs-menu-open {
    overflow: hidden;
  }

  .docs-mobilebar {
    position: sticky;
    z-index: 40;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 17px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 31, 0.91);
    backdrop-filter: blur(20px);
  }

  .docs-mobilebar__brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
  }

  .docs-mobilebar__brand img {
    width: 31px;
    height: 31px;
  }

  .docs-mobilebar .docs-menu-button {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 5px 11px;
    min-height: 39px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .docs-mobilebar .docs-menu-button span {
    grid-column: 1;
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .docs-mobilebar .docs-menu-button span:first-child {
    align-self: end;
  }

  .docs-mobilebar .docs-menu-button span:nth-child(2) {
    align-self: start;
  }

  .docs-mobilebar .docs-menu-button i {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 0.67rem;
    font-style: normal;
    font-weight: 650;
  }

  .docs-mobilebar .docs-menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .docs-mobilebar .docs-menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .docs-backdrop {
    position: fixed;
    z-index: 20;
    inset: 64px 0 0;
    display: block;
    background: rgba(2, 8, 17, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .docs-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .docs-sidebar {
    top: 64px;
    bottom: 0;
    width: min(90vw, 340px);
    transform: translateX(-102%);
    transition: transform 290ms var(--ease-out);
  }

  .docs-sidebar.is-open {
    transform: translateX(0);
  }

  .docs-main {
    width: 100%;
    margin-left: 0;
    padding: 42px 22px 32px;
  }

  .read-progress {
    left: 0;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .docs-main {
    padding: 30px 14px 26px;
  }

  .docs-article__head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 14px;
  }

  .docs-description {
    text-align: left;
  }

  .docs-article h1 {
    padding: 29px 23px 31px;
    border-radius: 20px 20px 0 0;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .doc-toc {
    grid-template-columns: 1fr;
    padding: 16px 17px;
    border-radius: 0 0 20px 20px;
  }

  .docs-article > p:first-of-type:not(.docs-kicker):not(.docs-description) {
    margin-top: 21px;
    padding: 0;
  }

  .docs-article h2 {
    margin-top: 46px;
    padding-left: 20px;
  }

  .docs-article p,
  .docs-article li,
  .docs-article blockquote {
    font-size: 0.93rem;
  }

  .docs-article table {
    display: block;
    overflow-x: auto;
    border-radius: 13px;
    white-space: nowrap;
  }

  .docs-article pre {
    margin-right: -2px;
    margin-left: -2px;
    padding: 48px 17px 20px;
  }

  .docs-pagination {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .docs-pagination a:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Theme controls */
.theme-toggle {
  position: relative;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #9caec6;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--line-strong);
  color: #fff;
  background: rgba(83, 136, 231, 0.08);
  outline: none;
}

.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 160ms ease, transform 200ms ease;
}

.theme-toggle__sun {
  opacity: 0;
  transform: rotate(-30deg) scale(0.7);
}

.theme-toggle__moon {
  opacity: 1;
}

html[data-theme="light"] .theme-toggle__sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-toggle__moon {
  opacity: 0;
  transform: rotate(30deg) scale(0.7);
}

.docs-theme-toggle {
  width: 100%;
  margin: 14px 0 0;
  padding: 0 13px;
  justify-content: start;
}

.docs-theme-toggle svg {
  left: 12px;
}

.docs-theme-toggle__label {
  margin-left: 28px;
  font-size: 0.68rem;
  font-weight: 650;
}

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

/* Documentation light theme */
html[data-theme="light"] {
  background: #eef3fa;
}

html[data-theme="light"] body {
  color: #17243a;
  background:
    radial-gradient(circle at 82% 0, rgba(69, 126, 228, 0.1), transparent 29rem),
    #eef3fa;
}

html[data-theme="light"] .docs-sidebar {
  border-color: rgba(36, 69, 115, 0.11);
  background: rgba(245, 248, 252, 0.95);
}

html[data-theme="light"] .docs-brand b,
html[data-theme="light"] .docs-article h1,
html[data-theme="light"] .docs-article h2,
html[data-theme="light"] .docs-article h3 {
  color: #132137;
}

html[data-theme="light"] .docs-search input {
  border-color: rgba(36, 69, 115, 0.11);
  color: #1c2b42;
  background: #fff;
}

html[data-theme="light"] .docs-search input:focus {
  border-color: rgba(61, 117, 207, 0.4);
  background: #fff;
}

html[data-theme="light"] .docs-nav__item {
  color: #5f7087;
}

html[data-theme="light"] .docs-nav__item small {
  color: #8996a8;
}

html[data-theme="light"] .docs-nav__item:hover,
html[data-theme="light"] .docs-nav__item:focus-visible {
  border-color: rgba(61, 117, 207, 0.11);
  color: #25364e;
  background: rgba(66, 120, 211, 0.05);
}

html[data-theme="light"] .docs-nav__item.is-active {
  border-color: rgba(61, 117, 207, 0.17);
  color: #17345e;
  background: linear-gradient(90deg, rgba(66, 120, 211, 0.13), rgba(66, 120, 211, 0.035));
}

html[data-theme="light"] .docs-sidebar__foot a,
html[data-theme="light"] .theme-toggle {
  border-color: rgba(36, 69, 115, 0.11);
  color: #52657e;
  background: rgba(255, 255, 255, 0.58);
}

html[data-theme="light"] .docs-sidebar__foot a:hover,
html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .theme-toggle:focus-visible {
  border-color: rgba(61, 117, 207, 0.27);
  color: #214f91;
  background: #fff;
}

html[data-theme="light"] .docs-article__head {
  border-color: rgba(36, 69, 115, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

html[data-theme="light"] .docs-description,
html[data-theme="light"] .docs-article p,
html[data-theme="light"] .docs-article li,
html[data-theme="light"] .docs-article blockquote {
  color: #5f6f85;
}

html[data-theme="light"] .docs-article h1 {
  border-color: rgba(55, 102, 171, 0.13);
  background:
    radial-gradient(circle at 88% 5%, rgba(94, 149, 247, 0.13), transparent 19rem),
    #f8faff;
}

html[data-theme="light"] .doc-toc {
  border-color: rgba(55, 102, 171, 0.13);
  background: #f6f9fd;
}

html[data-theme="light"] .doc-toc a {
  color: #607087;
}

html[data-theme="light"] .doc-toc a:hover,
html[data-theme="light"] .doc-toc a.is-active {
  color: #1d4f93;
  background: rgba(66, 120, 211, 0.07);
}

html[data-theme="light"] .docs-article h2 {
  border-color: rgba(36, 69, 115, 0.11);
}

html[data-theme="light"] .docs-article code {
  border-color: rgba(55, 102, 171, 0.13);
  color: #2d67b8;
  background: rgba(66, 120, 211, 0.06);
}

html[data-theme="light"] .docs-article pre {
  border-color: rgba(47, 87, 144, 0.14);
  background:
    linear-gradient(rgba(31, 62, 105, 0.04) 1px, transparent 1px),
    #eef3fb;
  background-size: 100% 31px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 40px rgba(48, 73, 108, 0.08);
}

html[data-theme="light"] .docs-article pre::before {
  color: #59687f;
}

html[data-theme="light"] .docs-article pre code {
  color: #1f6e4a;
}

html[data-theme="light"] .copy-btn {
  border-color: rgba(47, 87, 144, 0.14);
  color: #5f7088;
  background: #ffffff;
}

html[data-theme="light"] .copy-btn:hover,
html[data-theme="light"] .copy-btn:focus-visible {
  border-color: rgba(63, 119, 210, 0.32);
  color: #16345e;
  background: #f4f8ff;
}

html[data-theme="light"] .docs-article blockquote {
  border-color: rgba(55, 102, 171, 0.13);
  border-left-color: #4c83d9;
  background: rgba(66, 120, 211, 0.055);
}

html[data-theme="light"] .docs-article table {
  border-color: rgba(36, 69, 115, 0.11);
}

html[data-theme="light"] .docs-article th,
html[data-theme="light"] .docs-article td {
  border-color: rgba(36, 69, 115, 0.1);
}

html[data-theme="light"] .docs-article thead th {
  color: #203149;
  background: #e5edf8;
}

html[data-theme="light"] .docs-article tbody td {
  color: #5f6f84;
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .docs-pagination,
html[data-theme="light"] .docs-footer {
  border-color: rgba(36, 69, 115, 0.11);
}

html[data-theme="light"] .docs-pagination a {
  border-color: rgba(36, 69, 115, 0.11);
  color: #1b2a40;
  background: rgba(255, 255, 255, 0.48);
}

html[data-theme="light"] .docs-pagination a:hover,
html[data-theme="light"] .docs-pagination a:focus-visible {
  border-color: rgba(61, 117, 207, 0.25);
  background: #fff;
}

@media (max-width: 900px) {
  html[data-theme="light"] .docs-mobilebar {
    border-color: rgba(36, 69, 115, 0.11);
    color: #1b2b42;
    background: rgba(238, 243, 250, 0.93);
  }

  html[data-theme="light"] .docs-menu-button {
    border-color: rgba(36, 69, 115, 0.11);
    color: #2e4059;
    background: rgba(255, 255, 255, 0.58);
  }
}
