html,
body {
    min-height: 100%;
}

.docs-body {
    margin: 0;
    overflow: auto;
    background: #171923;
    color: #e6e8ef;
}

.text-secondary {
  color: var(--ui-text-color-secondary);
}

.hover:decoration-dashed:hover {
  text-decoration-style: dashed;
}

.docs-shell {
    display: grid;
    grid-template-columns: 392px minmax(0, 1fr);
    width: min(100%, 1560px);
    min-height: 100vh;
    margin: 0 auto;
}

.docs-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #2b2d3a;
    background: #181821;
    padding: 0 22px 32px;
    z-index: 40;
}

.docs-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    color: #f5f7fb;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.docs-brand img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.docs-search {
    display: block;
    position: relative;
    margin: 14px 0 22px;
}

.docs-search span {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c93a6;
    font-size: 13px;
    pointer-events: none;
}

.docs-search input {
    width: 100%;
    height: 36px;
    border: 1px solid #343646;
    border-radius: 10px;
    background: #1a1a25;
    color: #f5f7fb;
    padding: 0 68px 0 34px;
    outline: none;
}

.docs-search input::placeholder {
    color: #7f8699;
}

.docs-search::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1.7px solid #8c93a6;
    border-radius: 50%;
    transform: translateY(-60%);
}

.docs-search::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 22px;
    width: 6px;
    height: 1.7px;
    border-radius: 999px;
    background: #8c93a6;
    transform: rotate(45deg);
}

.docs-nav-group {
    margin: 0 0 4px;
}

.docs-nav-group-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 36px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #d9deec;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    line-height: 1.35;
    padding: 8px 10px 8px 0;
    text-align: left;
}

.docs-nav-group-toggle:hover {
    color: #ffffff;
}

.docs-nav-group-toggle span:first-child {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-nav-chevron {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #777d90;
    border-bottom: 1.5px solid #777d90;
    transform: rotate(-45deg);
    transition: transform 160ms ease;
}

.docs-nav-group.is-open .docs-nav-chevron {
    transform: rotate(45deg);
}

.docs-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav-items {
    display: none;
    margin-left: 8px !important;
    border-left: 1px solid #2d3040;
    padding-left: 10px !important;
}

.docs-nav-group.is-open .docs-nav-items,
.docs-nav-items-root {
    display: block;
}

.docs-nav-items-root {
    margin-left: 0 !important;
    border-left: 0;
    padding-left: 0 !important;
}

.docs-nav-group a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    width: 100%;
    min-height: 36px;
    border-radius: 8px;
    color: #aeb5c8;
    font-size: 14px;
    line-height: 1.35;
    padding: 8px 14px 8px 12px;
    text-decoration: none;
}

.docs-nav-group a:has(.docs-method) {
    padding-right: 56px;
}

.docs-nav-group a:hover,
.docs-nav-group a.is-active {
    background: #272838;
    color: #ffffff;
}

.docs-nav-group a.is-active {
    color: #9aafff;
}

.docs-menu-title {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-method {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 14px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 34px;
    min-width: 34px;
    height: 16px;
    margin-left: 0;
    border-radius: 5px;
    padding: 0;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.docs-nav-group a .docs-method-get {
    background: rgba(29, 183, 92, 0.16) !important;
    color: #57d987 !important;
}

.docs-nav-group a .docs-method-post {
    background: rgba(255, 112, 33, 0.16) !important;
    color: #ff7b30 !important;
}

.docs-nav-group a .docs-method-put,
.docs-nav-group a .docs-method-patch {
    background: rgba(59, 130, 246, 0.16) !important;
    color: #60a5fa !important;
}

.docs-nav-group a .docs-method-delete {
    background: rgba(239, 68, 68, 0.16) !important;
    color: #f87171 !important;
}

.docs-nav-group a.is-active .docs-method-get {
    background: rgba(29, 183, 92, 0.24) !important;
    color: #63e79a !important;
}

.docs-nav-group a.is-active .docs-method-post {
    background: rgba(255, 112, 33, 0.24) !important;
    color: #ff8d4a !important;
}

.docs-nav-group a.is-active .docs-method-put,
.docs-nav-group a.is-active .docs-method-patch {
    background: rgba(59, 130, 246, 0.26) !important;
    color: #7db7ff !important;
}

.docs-nav-group a.is-active .docs-method-delete {
    background: rgba(239, 68, 68, 0.26) !important;
    color: #ff8585 !important;
}

.docs-main {
    min-width: 0;
    overflow-x: hidden;
}

.docs-article {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 34px 32px 64px;
}

.docs-article h1 {
    margin: 0 0 18px !important;
    color: #e8edf8 !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    line-height: 1.28 !important;
    letter-spacing: 0 !important;
}

.docs-article .markdown-body h2.markdown-doc-viewer-heading,
.docs-article .markdown-body h2 {
    margin: 26px 0 14px !important;
    color: #dce6f7 !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1.32 !important;
    letter-spacing: 0 !important;
}

.docs-article .markdown-body h4.markdown-doc-viewer-heading,
.docs-article .markdown-body h4 {
    margin: 0 0 18px !important;
    color: #d7deed !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
}

.docs-article .mb-8 > h2 {
    margin: 0 0 16px !important;
    color: #e4eaf6 !important;
    font-size: 21px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
}

.docs-article .text-paragraph.font-400.mb-6 {
    margin: 18px 0 22px !important;
    color: #a9b0c2 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.docs-article .markdown-body .anchor,
.docs-article [class~="@container/footer"],
.docs-article .flex.gap-4.mb-10:has(._paginator-item_109co_1),
.docs-article [class*="/environment-url"] .ml-3:empty {
    display: none !important;
}

.docs-article [class*="/environment-url"] {
    align-items: center !important;
    width: min(100%, 815px);
    min-height: 40px !important;
    border: 1px solid #2c3040 !important;
    border-radius: 10px !important;
    background: #171923 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.docs-article [class*="/environment-url"] > .flex {
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
    padding: 4px !important;
}

.docs-article [class*="/environment-url"] .m-1 {
    margin: 0 !important;
    flex: 0 0 auto !important;
}

.docs-article [class*="/environment-url"] .m-1 [class*="rounded"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 48px !important;
    height: 28px !important;
    max-height: 28px !important;
    border-radius: 7px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    background: rgba(255, 112, 33, 0.16) !important;
    color: #ff7b30 !important;
}

.docs-article [class*="/environment-url"] .m-1 .docs-endpoint-method-badge-post {
    background: rgba(255, 112, 33, 0.2) !important;
    color: #ff8d4a !important;
}

.docs-article [class*="/environment-url"] .m-1 .docs-endpoint-method-badge-get {
    background: rgba(29, 183, 92, 0.2) !important;
    color: #63e79a !important;
}

.docs-article [class*="/environment-url"] .m-1 .docs-endpoint-method-badge-put,
.docs-article [class*="/environment-url"] .m-1 .docs-endpoint-method-badge-patch {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #7db7ff !important;
}

.docs-article [class*="/environment-url"] .m-1 .docs-endpoint-method-badge-delete {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ff8585 !important;
}

.docs-article [class*="/environment-url"] .m-1 [class*="bg-green"] {
    background: rgba(29, 183, 92, 0.2) !important;
    color: #63e79a !important;
}

.docs-article [class*="/environment-url"] .m-1 [class*="bg-blue"] {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #7db7ff !important;
}

.docs-article [class*="/environment-url"] .m-1 [class*="bg-red"] {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ff8585 !important;
}

.docs-article [class*="/environment-url"] .break-all {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.docs-article [class*="/environment-url"] [style*="white-space:normal"] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    white-space: nowrap !important;
}

.docs-article [class*="/environment-url"] [style*="white-space:normal"] > span {
    margin-left: 0 !important;
}

.docs-article [class*="/environment-url"] [class*="inline-block"][class*="rounded"] {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 1 auto !important;
    max-width: 100% !important;
    min-height: 28px !important;
    border: 0 !important;
    border-radius: 7px !important;
    background: #20222d !important;
    padding: 0 10px !important;
    line-height: 1 !important;
    overflow: hidden !important;
}

.docs-article [class*="/environment-url"] [class*="cursor-pointer"] {
    display: inline-block !important;
    max-width: 100% !important;
    color: #f4f7ff !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    overflow-wrap: normal !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.docs-article [class*="/environment-url"] [style*="white-space:normal"] > span:not(:first-child) [class*="cursor-pointer"] {
    color: #dce3f2 !important;
}

.docs-article .docs-endpoint-url-part:hover,
.docs-article .docs-endpoint-url-part:focus-visible {
    color: #ffffff !important;
    outline: none;
}

.docs-article .docs-endpoint-url-part:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 2px rgba(122, 147, 255, 0.44);
}

.docs-article [class*="/environment-url"].docs-endpoint-url-copied {
    border-color: rgba(34, 197, 94, 0.72) !important;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.14) !important;
}

.docs-article [class*="/environment-url"].docs-endpoint-url-error {
    border-color: rgba(239, 68, 68, 0.72) !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.14) !important;
}

.docs-article .ui-collapse-header {
    cursor: pointer;
}

.docs-article .ui-collapse-content[hidden] {
    display: none !important;
}

.docs-article .ui-collapse-arrow,
.docs-article .ui-collapse-arrow svg {
    transition: transform 160ms ease !important;
}

.docs-article .ui-collapse-item:not(.ui-collapse-item-active) > .ui-collapse-header .ui-collapse-arrow svg,
.docs-article .ui-collapse-item:not(.ui-collapse-item-active) > .ui-collapse-header .ui-collapse-arrow {
    transform: rotate(0deg) !important;
}

.docs-article .ui-collapse-item-active > .ui-collapse-header .ui-collapse-arrow svg,
.docs-article .ui-collapse-item-active > .ui-collapse-header .ui-collapse-arrow {
    transform: rotate(90deg) !important;
}

.docs-article .rounded-xl.bg-code-viewer {
    display: none !important;
}

.docs-article .ui-card-extra {
    display: none !important;
}

.docs-article [class*="_code-generate-button"] {
    display: none !important;
}

.docs-article [class*="_copy-icon"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #11141c;
    cursor: pointer;
    opacity: 0.76;
    outline: none;
    pointer-events: auto;
    transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.docs-article [class*="_copy-icon"]:hover,
.docs-article [class*="_copy-icon"]:focus-visible {
    color: #ffffff;
    opacity: 1;
}

.docs-article [class*="_copy-icon"]:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 2px rgba(118, 136, 201, 0.5);
}

.docs-article [class*="_copy-icon"].docs-copy-ok {
    color: #22c55e !important;
    opacity: 1;
    transform: scale(1.08);
}

.docs-article [class*="_copy-icon"].docs-copy-error {
    color: #ef4444 !important;
    opacity: 1;
    transform: scale(1.08);
}

.docs-optional-marker {
    color: #7d8496;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.docs-article [data-panel-group][data-panel-group-direction="horizontal"] {
    align-items: stretch !important;
}

.docs-article [data-panel-group][data-panel-group-direction="horizontal"] [data-resize-handle] {
    display: block !important;
    flex: 0 0 1px !important;
    align-self: stretch !important;
    width: 1px !important;
    min-height: 100% !important;
    margin: 0 14px !important;
    background: #303546 !important;
    opacity: 1 !important;
}

.docs-article [data-panel-group][data-panel-group-direction="horizontal"] [data-resize-handle] + [data-panel] {
    border-top: 0 !important;
}

.docs-request-tabs {
    margin-bottom: 12px !important;
}

.docs-request-tabs .ui-tabs-nav {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
}

.docs-request-tabs .ui-tabs-nav-operations,
.docs-request-tabs .ui-tabs-ink-bar {
    display: none !important;
}

.docs-request-tabs .ui-tabs-nav-list {
    display: flex !important;
    gap: 10px !important;
    transform: none !important;
}

.docs-request-tabs .ui-tabs-tab {
    cursor: pointer;
}

.docs-request-tabs .ui-tabs-tab-active {
    border-color: rgba(118, 136, 201, 0.75) !important;
    background: rgba(118, 136, 201, 0.12) !important;
    color: #ffffff !important;
}

.docs-code-example {
    overflow: hidden;
    border: 1px solid #2c3142;
    border-radius: 8px;
    background: #11141c;
}

.docs-code-example-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #252a38;
    padding: 12px 14px;
}

.docs-code-example-title {
    min-width: 0;
    color: #e8edf8;
    font-size: 14px;
    font-weight: 600;
}

.docs-code-copy {
    flex: 0 0 auto;
    border: 1px solid #3b4255;
    border-radius: 6px;
    background: #1a1f2c;
    color: #dfe6f5;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    padding: 8px 10px;
}

.docs-code-copy:hover {
    border-color: #5d6a8a;
    color: #ffffff;
}

.docs-code-example pre {
    overflow-x: auto;
    margin: 0 !important;
    background: transparent !important;
    padding: 16px !important;
}

.docs-code-example code {
    display: block;
    color: #dbe8ff;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.55;
    white-space: pre !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    tab-size: 4;
}

.docs-highlight .syntax-keyword {
    color: #ff7b72;
}

.docs-highlight .syntax-string {
    color: #a5d6ff;
}

.docs-highlight .syntax-number {
    color: #79c0ff;
}

.docs-highlight .syntax-comment {
    color: #8b949e;
}

.docs-highlight .syntax-variable {
    color: #ffa657;
}

.docs-highlight .syntax-constant {
    color: #d2a8ff;
}

.docs-highlight .syntax-property {
    color: #7ee787;
}

.docs-pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin: 42px 0 20px;
}

.docs-pagination-link {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    border: 1px solid #d8dce8;
    background: transparent;
    color: #f3f6ff;
    padding: 14px 18px;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.docs-pagination-link:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
}

.docs-pagination-link-empty {
    visibility: hidden;
}

.docs-pagination-link-next {
    justify-content: space-between;
}

.docs-pagination-link-prev {
    justify-content: space-between;
}

.docs-pagination-link-prev .docs-pagination-copy {
    text-align: right;
}

.docs-pagination-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 6px;
}

.docs-pagination-label {
    color: #8d94a8;
    font-size: 14px;
    line-height: 1.2;
}

.docs-pagination-title {
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-pagination-icon {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.docs-article .sticky {
    position: static !important;
}

.docs-article pre,
.docs-article code {
    white-space: pre-wrap;
    word-break: break-word;
}

.docs-article table,
.docs-article .ui-card,
.docs-article .JsonSchemaViewer {
    max-width: 100%;
}

.docs-article .JsonSchemaViewer {
    overflow-x: auto;
}

.docs-article .svg-inline--fa,
.docs-article svg.sl-icon {
    display: inline-block;
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    overflow: visible;
    vertical-align: -0.125em;
}

.docs-article .JsonSchemaViewer [style*="width: 88px"] {
    width: 104px !important;
    min-width: 104px !important;
    flex: 0 0 104px !important;
    justify-content: center;
}

.docs-article .JsonSchemaViewer [style*="width: 200px"] {
    width: 190px !important;
    min-width: 190px !important;
    flex: 0 0 190px !important;
}

.docs-article .JsonSchemaViewer .sl-flex-1 {
    min-width: 0;
}

.docs-article .JsonSchemaViewer .json-schema-viewer__description {
    max-width: 100%;
    overflow-wrap: anywhere;
}

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

.docs-menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #252a38;
    color: #ffffff;
    padding: 8px 12px;
}

.docs-mobile-brand {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    html,
    body {
        overflow-x: hidden;
    }

    .docs-mobile-bar {
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        height: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: #11131b;
        padding: 0 14px;
        z-index: 60;
    }

    .docs-shell {
        display: block;
        width: 100%;
        margin: 0;
    }

    .docs-sidebar {
        position: fixed;
        inset: 56px auto 0 0;
        width: min(88vw, 340px);
        max-width: calc(100vw - 28px);
        padding: 0 18px 28px;
        box-shadow: 24px 0 44px rgba(0, 0, 0, 0.28);
        transform: translateX(-105%);
        transition: transform 180ms ease;
    }

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

    .docs-article {
        padding: 26px 16px 48px;
    }

    .docs-article h1 {
        margin-bottom: 20px !important;
        font-size: 29px !important;
        line-height: 1.28 !important;
    }

    .docs-article .markdown-body h2.markdown-doc-viewer-heading,
    .docs-article .markdown-body h2 {
        font-size: 23px !important;
        line-height: 1.34 !important;
    }

    .docs-article .ui-card {
        border-radius: 10px !important;
    }

    .docs-article [class*="/environment-url"] [style*="white-space:normal"] {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .docs-article [class*="/environment-url"] > .flex {
        gap: 10px !important;
        padding: 8px !important;
    }

    .docs-article [class*="/environment-url"] .break-all {
        flex-basis: 100% !important;
    }

    .docs-article [class*="/environment-url"] [class*="inline-block"][class*="rounded"] {
        max-width: calc(100vw - 50px) !important;
    }

    .docs-article .ui-collapse-header,
    .docs-article .ui-collapse-content-box,
    .docs-article .ui-card-head,
    .docs-article .ui-card-body {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .docs-article .ui-card-head-wrapper {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .docs-article .ui-card-head-title {
        min-width: 0 !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    .docs-article .ui-card-head-title [class*="rounded"],
    .docs-article .ui-card-head-title [class*="border"] {
        display: inline-flex !important;
        max-width: 100% !important;
        margin-top: 4px !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    .docs-article .JsonSchemaViewer {
        overflow: visible;
    }

    .docs-article .JsonSchemaViewer [data-level="0"] > .sl-flex:first-child {
        display: none !important;
    }

    .docs-article .JsonSchemaViewer [data-id] {
        padding: 12px 0 !important;
    }

    .docs-article .JsonSchemaViewer [data-id] > .sl-flex {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .docs-article .JsonSchemaViewer [data-id] > .sl-flex > .sl-flex-1 > .sl-flex {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: start !important;
        gap: 8px 12px !important;
    }

    .docs-article .JsonSchemaViewer [data-id] > .sl-flex > .sl-flex-1 > .sl-flex > [style*="width: 200px"],
    .docs-article .JsonSchemaViewer [data-id] > .sl-flex > .sl-flex-1 > .sl-flex > [style*="width: 88px"] {
        width: auto !important;
        min-width: 0 !important;
        flex: initial !important;
    }

    .docs-article .JsonSchemaViewer [data-id] > .sl-flex > .sl-flex-1 > .sl-flex > [style*="width: 88px"] {
        justify-content: flex-end !important;
        padding-top: 1px !important;
        padding-left: 0 !important;
    }

    .docs-article .JsonSchemaViewer [data-id] > .sl-flex > .sl-flex-1 > .sl-flex > .sl-flex-1 {
        grid-column: 1 / -1;
        width: auto !important;
        min-width: 0 !important;
    }

    .docs-article .JsonSchemaViewer .json-schema-viewer__description {
        margin-top: 2px !important;
    }

    .docs-article .markdown-code-block,
    .docs-code-example {
        max-width: 100%;
    }

    .docs-article .markdown-code-block pre,
    .docs-code-example pre {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .docs-article .markdown-code-block pre code,
    .docs-code-example code {
        font-size: 12px !important;
        line-height: 1.65 !important;
        white-space: pre !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .docs-article [class*="_copy-icon"] {
        right: 10px;
        top: 10px;
        background: rgba(17, 20, 28, 0.92);
    }

    .docs-request-tabs .ui-tabs-nav-list {
        gap: 8px !important;
    }

    .docs-request-tabs .ui-tabs-tab {
        min-width: 70px !important;
    }

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

    .docs-pagination-link {
        min-width: 0;
        min-height: 64px;
        padding: 12px 14px;
    }

    .docs-pagination-title {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .docs-article .flex {
        min-width: 0;
    }
}
