:root {
    --docs-brand: #8a4f5d;
    --docs-brand-dark: #633541;
    --docs-brand-deep: #48232d;
    --docs-brand-soft: #f8edef;
    --docs-accent: #15756f;
    --docs-accent-soft: #e7f6f4;
    --docs-blue: #2563a8;
    --docs-warning: #b96800;
    --docs-danger: #b4233c;
    --docs-ink: #182230;
    --docs-text: #344054;
    --docs-muted: #667085;
    --docs-line: #e4e7ec;
    --docs-surface: #ffffff;
    --docs-canvas: #f7f8fa;
    --docs-focus: #0f6fec;
    --docs-shadow-sm: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 12px rgba(16, 24, 40, .04);
    --docs-shadow-md: 0 16px 40px rgba(55, 32, 39, .10);
    --docs-radius-sm: .75rem;
    --docs-radius: 1.125rem;
    --docs-radius-lg: 1.75rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

body {
    margin: 0;
    background: var(--docs-canvas);
    color: var(--docs-text);
    font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--docs-brand-dark);
}

a:hover {
    color: var(--docs-brand-deep);
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--docs-focus) 70%, transparent);
    outline-offset: 3px;
    border-radius: .35rem;
}

.docs-container {
    max-width: 1180px;
}

.docs-skip-link {
    position: fixed;
    top: .75rem;
    inset-inline-start: 1rem;
    z-index: 3000;
    padding: .75rem 1rem;
    background: #fff;
    color: var(--docs-ink);
    border-radius: .75rem;
    box-shadow: var(--docs-shadow-md);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.docs-skip-link:focus {
    transform: translateY(0);
}

.docs-site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(228, 231, 236, .9);
    box-shadow: 0 4px 18px rgba(16, 24, 40, .035);
    backdrop-filter: blur(14px);
}

.docs-site-header .navbar {
    min-height: 4.75rem;
    padding-block: .6rem;
}

.docs-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--docs-ink);
    text-decoration: none;
    min-width: max-content;
}

.docs-brand:hover {
    color: var(--docs-ink);
}

.docs-brand-mark {
    display: grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: .9rem;
    color: #fff;
    background: linear-gradient(145deg, var(--docs-brand), var(--docs-brand-dark));
    box-shadow: 0 8px 18px rgba(99, 53, 65, .22);
    font-size: 1.15rem;
}

.docs-brand strong,
.docs-brand small {
    display: block;
}

.docs-brand strong {
    font-size: 1.06rem;
    line-height: 1.2;
    font-weight: 800;
}

.docs-brand small {
    color: var(--docs-muted);
    font-size: .76rem;
    margin-top: .1rem;
}

.docs-main-nav {
    gap: .15rem;
    margin-inline: 1.5rem;
}

.docs-main-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem .8rem;
    border-radius: .75rem;
    color: #475467;
    font-weight: 600;
    white-space: nowrap;
}

.docs-main-nav .nav-link:hover,
.docs-main-nav .nav-link:focus-visible {
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
}

.docs-menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--docs-line);
    color: var(--docs-ink);
    font-size: 1.45rem;
}

.docs-header-search {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: min(15.5rem, 100%);
    padding: .55rem .7rem;
    background: #f8fafc;
    border: 1px solid #dfe3e8;
    border-radius: .8rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.docs-header-search:focus-within {
    background: #fff;
    border-color: var(--docs-brand);
    box-shadow: 0 0 0 3px rgba(138, 79, 93, .1);
}

.docs-header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--docs-ink);
}

.docs-header-search kbd {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #667085;
    box-shadow: none;
    font: inherit;
    font-size: .72rem;
    padding: .1rem .42rem;
}

.docs-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.25rem, 8vw, 7rem) 0 clamp(5.5rem, 10vw, 8rem);
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .13), transparent 26rem),
        radial-gradient(circle at 85% 85%, rgba(71, 151, 148, .22), transparent 25rem),
        linear-gradient(135deg, var(--docs-brand-deep), #713f4c 55%, #315f67);
}

.docs-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: radial-gradient(circle, #fff 1px, transparent 1.5px);
    background-size: 25px 25px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
    pointer-events: none;
}

.docs-hero .docs-container {
    position: relative;
    z-index: 1;
}

.docs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .8rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .92);
    font-size: .88rem;
    font-weight: 600;
}

.docs-hero h1 {
    max-width: 800px;
    margin: 1.25rem auto .9rem;
    color: #fff;
    font-size: clamp(2.25rem, 6vw, 4.15rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.03em;
}

.docs-hero-lead {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.docs-search-hero {
    display: flex;
    align-items: center;
    max-width: 760px;
    margin: 2.25rem auto 0;
    padding: .55rem;
    background: #fff;
    border-radius: 1.1rem;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .28);
}

.docs-search-hero i {
    margin-inline: .85rem .2rem;
    color: var(--docs-muted);
    font-size: 1.2rem;
}

.docs-search-hero input {
    flex: 1;
    min-width: 0;
    height: 3.35rem;
    padding-inline: .5rem;
    border: 0;
    outline: 0;
    color: var(--docs-ink);
    background: transparent;
    font-size: 1.05rem;
}

.docs-search-hero button,
.docs-button-primary,
.docs-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 3rem;
    padding: .7rem 1.15rem;
    border: 1px solid transparent;
    border-radius: .8rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.docs-search-hero button,
.docs-button-primary {
    color: #fff;
    background: var(--docs-brand-dark);
    box-shadow: 0 8px 18px rgba(99, 53, 65, .18);
}

.docs-search-hero button:hover,
.docs-button-primary:hover {
    color: #fff;
    background: var(--docs-brand-deep);
    transform: translateY(-1px);
}

.docs-button-secondary {
    color: var(--docs-brand-dark);
    background: #fff;
    border-color: #d0d5dd;
}

.docs-button-secondary:hover {
    color: var(--docs-brand-deep);
    border-color: var(--docs-brand);
    background: var(--docs-brand-soft);
}

.docs-search-hint {
    margin-top: 1rem;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
}

.docs-search-hint a {
    color: #fff;
    text-underline-offset: .2rem;
}

.docs-quick-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .85rem;
    margin-top: -3.3rem;
}

.docs-quick-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 6.6rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(228, 231, 236, .9);
    border-radius: var(--docs-radius);
    color: var(--docs-ink);
    text-decoration: none;
    box-shadow: var(--docs-shadow-md);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.docs-quick-card:hover {
    color: var(--docs-ink);
    border-color: rgba(138, 79, 93, .45);
    transform: translateY(-4px);
}

.docs-quick-icon,
.docs-category-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: .9rem;
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
    font-size: 1.25rem;
}

.docs-quick-card strong,
.docs-quick-card small {
    display: block;
}

.docs-quick-card strong {
    margin-bottom: .15rem;
    color: var(--docs-ink);
}

.docs-quick-card small {
    color: var(--docs-muted);
}

.docs-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.docs-section-white {
    background: #fff;
}

.docs-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.docs-section-heading h2,
.docs-page-title {
    margin: 0;
    color: var(--docs-ink);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.02em;
}

.docs-section-heading p {
    max-width: 620px;
    margin: .45rem 0 0;
    color: var(--docs-muted);
}

.docs-stat-pill,
.docs-count-badge,
.docs-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    width: max-content;
    padding: .45rem .75rem;
    border-radius: 999px;
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
    font-size: .85rem;
    font-weight: 700;
}

.docs-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.docs-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 17rem;
    padding: 1.45rem;
    overflow: hidden;
    color: var(--docs-text);
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
    text-decoration: none;
    box-shadow: var(--docs-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.docs-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: var(--category-color, var(--docs-brand));
}

.docs-category-card:hover {
    color: var(--docs-text);
    border-color: color-mix(in srgb, var(--category-color, var(--docs-brand)) 55%, #fff);
    box-shadow: var(--docs-shadow-md);
    transform: translateY(-5px);
}

.docs-category-card .docs-category-icon {
    color: var(--category-color, var(--docs-brand-dark));
    background: color-mix(in srgb, var(--category-color, var(--docs-brand)) 12%, #fff);
}

.docs-category-card h3 {
    margin: 1.1rem 0 .45rem;
    color: var(--docs-ink);
    font-size: 1.18rem;
    font-weight: 800;
}

.docs-category-card p {
    display: -webkit-box;
    margin: 0 0 1rem;
    overflow: hidden;
    color: var(--docs-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.docs-category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eef0f3;
    color: var(--docs-muted);
    font-size: .86rem;
    font-weight: 600;
}

.docs-category-meta i:last-child {
    color: var(--category-color, var(--docs-brand));
    font-size: 1.1rem;
}

.docs-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(17rem, .7fr);
    gap: 1.25rem;
}

.docs-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.docs-article-card,
.docs-list-card {
    display: block;
    padding: 1.2rem;
    color: var(--docs-text);
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius-sm);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.docs-article-card:hover,
.docs-list-card:hover {
    color: var(--docs-text);
    border-color: rgba(138, 79, 93, .5);
    box-shadow: var(--docs-shadow-sm);
    transform: translateY(-2px);
}

.docs-article-card h3,
.docs-list-card h2 {
    margin: .65rem 0 .35rem;
    color: var(--docs-ink);
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.45;
}

.docs-article-card p,
.docs-list-card p {
    margin: 0;
    color: var(--docs-muted);
    font-size: .92rem;
}

.docs-popular-panel {
    padding: 1.4rem;
    background: linear-gradient(145deg, #fff9e8, #fff3cc);
    border: 1px solid #f5dc92;
    border-radius: var(--docs-radius);
}

.docs-popular-panel h2 {
    margin: 0 0 .75rem;
    color: var(--docs-ink);
    font-size: 1.25rem;
    font-weight: 800;
}

.docs-popular-link {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: .7rem;
    align-items: start;
    padding: .85rem 0;
    color: var(--docs-text);
    border-bottom: 1px solid rgba(185, 104, 0, .15);
    text-decoration: none;
}

.docs-popular-link:last-child {
    border-bottom: 0;
}

.docs-popular-number {
    display: grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: .55rem;
    color: #8c5200;
    background: #fff;
    font-weight: 800;
}

.docs-popular-link strong,
.docs-popular-link small {
    display: block;
}

.docs-popular-link strong {
    color: var(--docs-ink);
    line-height: 1.4;
}

.docs-popular-link small {
    margin-top: .2rem;
    color: #8a6b37;
}

.docs-help-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius-lg);
    box-shadow: var(--docs-shadow-sm);
}

.docs-help-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.4rem;
    color: #fff;
    background: linear-gradient(145deg, var(--docs-accent), #0e5652);
    font-size: 1.8rem;
}

.docs-help-banner h2 {
    margin: 0 0 .3rem;
    color: var(--docs-ink);
    font-size: 1.45rem;
    font-weight: 800;
}

.docs-help-banner p {
    margin: 0;
    color: var(--docs-muted);
}

.docs-help-actions {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.docs-page-hero {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.12), transparent 19rem),
        linear-gradient(135deg, var(--docs-brand-deep), var(--page-accent, #315f67));
}

.docs-page-hero .docs-page-title,
.docs-page-hero h1 {
    margin: .8rem 0 .5rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
}

.docs-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
}

.docs-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .45rem;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.docs-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.docs-breadcrumb-dark,
.docs-breadcrumb-dark a {
    color: var(--docs-muted);
}

.docs-breadcrumb-dark a:hover {
    color: var(--docs-brand-dark);
}

.docs-page-shell {
    display: grid;
    grid-template-columns: 16rem minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 2.5rem 5rem;
}

.docs-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
    max-height: calc(100vh - 7rem);
    padding: 1rem;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
    box-shadow: var(--docs-shadow-sm);
}

.docs-sidebar h2 {
    margin: .25rem .4rem .75rem;
    color: var(--docs-muted);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.docs-sidebar-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .66rem .7rem;
    color: #475467;
    border-radius: .65rem;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}

.docs-sidebar-link > small {
    margin-inline-start: auto;
    color: var(--docs-muted);
}

.docs-sidebar-link:hover,
.docs-sidebar-link.is-active {
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
}

.docs-sidebar-link.is-active {
    box-shadow: inset -3px 0 var(--docs-brand);
}

.docs-page-content {
    min-width: 0;
}

.docs-results-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.docs-results-heading h2 {
    margin: 0;
    color: var(--docs-ink);
    font-size: 1.45rem;
    font-weight: 800;
}

.docs-list {
    display: grid;
    gap: .85rem;
}

.docs-list-card {
    position: relative;
    padding: 1.35rem 1.4rem;
}

.docs-list-card h2 {
    margin: .35rem 0;
    font-size: 1.18rem;
}

.docs-list-card-top,
.docs-list-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.docs-list-card-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: .8rem;
    color: var(--docs-muted);
    font-size: .82rem;
}

.docs-list-arrow {
    color: var(--docs-brand);
    font-size: 1.2rem;
}

.docs-empty-state {
    padding: clamp(2.5rem, 7vw, 5rem) 1.5rem;
    text-align: center;
    background: #fff;
    border: 1px dashed #cfd4dc;
    border-radius: var(--docs-radius);
}

.docs-empty-state-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 1.4rem;
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
    font-size: 1.8rem;
}

.docs-empty-state h2 {
    color: var(--docs-ink);
    font-size: 1.35rem;
    font-weight: 800;
}

.docs-empty-state p {
    color: var(--docs-muted);
}

.docs-search-page-form {
    display: flex;
    max-width: 760px;
    margin-top: 1.25rem;
    padding: .45rem;
    background: #fff;
    border-radius: 1rem;
}

.docs-search-page-form input {
    flex: 1;
    min-width: 0;
    padding: .8rem 1rem;
    border: 0;
    outline: 0;
    background: transparent;
}

.docs-search-page-form button {
    padding-inline: 1.2rem;
    color: #fff;
    border: 0;
    border-radius: .75rem;
    background: var(--docs-brand-dark);
    font-weight: 700;
}

.docs-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.docs-search-suggestions a {
    padding: .45rem .75rem;
    color: var(--docs-text);
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: 999px;
    text-decoration: none;
    font-size: .85rem;
}

.docs-reading-progress {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1200;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(to left, var(--docs-accent) var(--docs-reading-progress, 0), transparent 0);
}

.docs-article-shell {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 2rem 5rem;
}

.docs-article-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
    max-height: calc(100vh - 7rem);
    padding: 1rem;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
}

.docs-article-sidebar h2 {
    margin: .2rem 0 .7rem;
    color: var(--docs-ink);
    font-size: .92rem;
    font-weight: 800;
}

.docs-toc-link {
    display: block;
    padding: .42rem .55rem;
    color: var(--docs-muted);
    border-radius: .5rem;
    text-decoration: none;
    font-size: .85rem;
    line-height: 1.4;
}

.docs-toc-link:hover {
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
}

.docs-toc-level-3 {
    padding-inline-start: 1.25rem;
    font-size: .8rem;
}

.docs-article-card-main {
    min-width: 0;
    padding: clamp(1.25rem, 4vw, 3rem);
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius-lg);
    box-shadow: var(--docs-shadow-sm);
}

.docs-article-header h1 {
    margin: .75rem 0 .85rem;
    color: var(--docs-ink);
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.025em;
}

.docs-article-summary {
    max-width: 48rem;
    margin: 0 0 1.25rem;
    color: var(--docs-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.docs-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem 1rem;
    padding-bottom: 1.4rem;
    color: var(--docs-muted);
    border-bottom: 1px solid var(--docs-line);
    font-size: .86rem;
}

.docs-article-body {
    color: #344054;
    font-size: 1.06rem;
    line-height: 1.95;
}

.docs-article-body > :first-child {
    margin-top: 1.8rem;
}

.docs-article-body h2,
.docs-article-body h3,
.docs-article-body h4 {
    color: var(--docs-ink);
    font-weight: 800;
    scroll-margin-top: 6rem;
}

.docs-article-body h2 {
    margin: 2.7rem 0 1rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--docs-line);
    font-size: 1.65rem;
}

.docs-article-body h3 {
    margin: 2rem 0 .7rem;
    font-size: 1.3rem;
}

.docs-article-body p,
.docs-article-body ul,
.docs-article-body ol,
.docs-article-body table,
.docs-article-body blockquote {
    margin-bottom: 1.25rem;
}

.docs-article-body li {
    margin-bottom: .45rem;
}

.docs-article-body a {
    text-decoration-thickness: 1px;
    text-underline-offset: .2rem;
}

.docs-article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.6rem auto;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
    box-shadow: var(--docs-shadow-sm);
}

.docs-article-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.docs-article-body th,
.docs-article-body td {
    min-width: 9rem;
    padding: .7rem .85rem;
    border: 1px solid var(--docs-line);
    text-align: start;
}

.docs-article-body th {
    color: var(--docs-ink);
    background: #f8fafc;
}

.docs-article-body code {
    padding: .15rem .38rem;
    color: #a11538;
    background: #fdf0f3;
    border-radius: .35rem;
    direction: ltr;
    unicode-bidi: isolate;
}

.docs-article-body pre {
    padding: 1.2rem;
    overflow-x: auto;
    color: #e4e7ec;
    background: #182230;
    border-radius: .85rem;
    direction: ltr;
    text-align: left;
}

.docs-article-body pre code {
    padding: 0;
    color: inherit;
    background: transparent;
}

.docs-article-body blockquote,
.docs-note,
.docs-tip,
.docs-warning,
.docs-article-body .alert {
    padding: 1rem 1.15rem;
    border: 0;
    border-inline-start: 4px solid var(--docs-blue);
    border-radius: .75rem;
    background: #eff6ff;
}

.docs-tip {
    border-inline-start-color: var(--docs-accent);
    background: var(--docs-accent-soft);
}

.docs-warning {
    border-inline-start-color: var(--docs-danger);
    background: #fff0f3;
}

.docs-note {
    border-inline-start-color: var(--docs-warning);
    background: #fff7e6;
}

.docs-video {
    position: relative;
    padding-bottom: 56.25%;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: var(--docs-radius);
    background: #101828;
}

.docs-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.docs-mobile-toc {
    display: none;
    margin: 1rem 0;
    padding: .85rem;
    border: 1px solid var(--docs-line);
    border-radius: .75rem;
    background: #f8fafc;
}

.docs-mobile-toc summary {
    color: var(--docs-ink);
    font-weight: 800;
    cursor: pointer;
}

.docs-faq-list {
    display: grid;
    gap: .75rem;
}

.docs-faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius-sm);
}

.docs-faq-item[open] {
    border-color: rgba(138, 79, 93, .5);
    box-shadow: var(--docs-shadow-sm);
}

.docs-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    color: var(--docs-ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.docs-faq-item summary::-webkit-details-marker {
    display: none;
}

.docs-faq-item summary::after {
    content: "\F282";
    font-family: bootstrap-icons;
    color: var(--docs-brand);
    transition: transform .2s ease;
}

.docs-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.docs-faq-answer {
    padding: 0 1.15rem 1.15rem;
    color: var(--docs-text);
}

.docs-faq-answer > :last-child {
    margin-bottom: 0;
}

.docs-feedback-box {
    margin-top: 2.25rem;
    padding: 1.25rem;
    text-align: center;
    background: #f8fafc;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
}

.docs-feedback-box p {
    margin: 0 0 .75rem;
    color: var(--docs-ink);
    font-weight: 800;
}

.docs-feedback-actions,
.docs-faq-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6rem;
}

.docs-feedback-actions button,
.docs-faq-vote button,
.docs-filter-button {
    padding: .55rem .8rem;
    color: #475467;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: .65rem;
    font-weight: 600;
}

.docs-feedback-actions button:hover,
.docs-faq-vote button:hover,
.docs-feedback-actions button.is-selected,
.docs-faq-vote button.is-selected,
.docs-filter-button.is-active {
    color: var(--docs-brand-dark);
    border-color: var(--docs-brand);
    background: var(--docs-brand-soft);
}

.docs-feedback-message {
    min-height: 1.5rem;
    margin-top: .65rem;
    color: var(--docs-accent);
    font-weight: 700;
}

.docs-article-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--docs-line);
}

.docs-article-navigation a {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 0;
    padding: 1rem;
    color: var(--docs-text);
    background: #f8fafc;
    border-radius: .75rem;
    text-decoration: none;
}

.docs-article-navigation a:hover {
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
}

.docs-article-navigation small,
.docs-article-navigation strong {
    display: block;
}

.docs-article-navigation small {
    color: var(--docs-muted);
}

.docs-article-navigation strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.docs-related-panel {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: var(--docs-radius);
}

.docs-related-panel h2 {
    margin: 0 0 .75rem;
    color: var(--docs-ink);
    font-size: 1.15rem;
    font-weight: 800;
}

.docs-related-panel a {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem;
    color: var(--docs-text);
    border-radius: .6rem;
    text-decoration: none;
}

.docs-related-panel a:hover {
    color: var(--docs-brand-dark);
    background: var(--docs-brand-soft);
}

.docs-faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.docs-filter-button {
    border-radius: 999px;
}

.docs-faq-vote {
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: .8rem;
    border-top: 1px solid var(--docs-line);
    font-size: .85rem;
}

.docs-faq-vote button {
    padding: .4rem .65rem;
    font-size: .8rem;
}

.docs-muted {
    color: var(--docs-muted);
}

.docs-footer {
    padding: 3.5rem 0 1.5rem;
    color: rgba(255,255,255,.72);
    background: #182230;
}

.docs-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
}

.docs-brand-footer {
    color: #fff;
}

.docs-brand-footer:hover {
    color: #fff;
}

.docs-brand-footer small {
    color: rgba(255,255,255,.6);
}

.docs-footer p {
    max-width: 24rem;
    margin-top: 1rem;
}

.docs-footer h2 {
    margin: .35rem 0 .9rem;
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
}

.docs-footer-grid > div > a:not(.docs-brand) {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: .55rem;
    color: rgba(255,255,255,.68);
    text-decoration: none;
}

.docs-footer-grid > div > a:hover {
    color: #fff;
}

.docs-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .82rem;
}

@media (max-width: 991.98px) {
    .docs-site-header .navbar-collapse {
        padding: .75rem 0 .3rem;
    }

    .docs-main-nav {
        margin: .25rem 0 .75rem;
    }

    .docs-main-nav .nav-link {
        display: flex;
        padding: .7rem;
    }

    .docs-header-search {
        width: 100%;
    }

    .docs-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .docs-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .docs-page-shell,
    .docs-article-shell {
        grid-template-columns: 1fr;
    }

    .docs-sidebar,
    .docs-article-sidebar {
        display: none;
    }

    .docs-mobile-toc {
        display: block;
    }

    .docs-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .docs-hero {
        padding-top: 3.5rem;
    }

    .docs-search-hero {
        align-items: stretch;
        flex-wrap: wrap;
        padding: .45rem;
    }

    .docs-search-hero i {
        align-self: center;
    }

    .docs-search-hero button {
        width: 100%;
    }

    .docs-quick-grid {
        margin-top: -2.6rem;
    }

    .docs-quick-card {
        min-height: 5.5rem;
        padding: .8rem;
    }

    .docs-section-heading,
    .docs-results-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .docs-category-grid,
    .docs-content-grid,
    .docs-article-grid {
        grid-template-columns: 1fr;
    }

    .docs-category-card {
        min-height: 14.5rem;
    }

    .docs-help-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .docs-help-icon {
        margin: 0 auto;
    }

    .docs-help-actions {
        justify-content: center;
    }

    .docs-article-navigation {
        grid-template-columns: 1fr;
    }

    .docs-footer-grid {
        grid-template-columns: 1fr;
    }

    .docs-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 479.98px) {
    .docs-brand small {
        display: none;
    }

    .docs-quick-grid {
        grid-template-columns: 1fr;
    }

    .docs-quick-card {
        min-height: auto;
    }

    .docs-search-page-form {
        flex-direction: column;
    }

    .docs-search-page-form button {
        min-height: 2.8rem;
    }

    .docs-feedback-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .docs-site-header,
    .docs-footer,
    .docs-article-sidebar,
    .docs-feedback-box,
    .docs-article-navigation,
    .docs-related-panel,
    .docs-reading-progress {
        display: none !important;
    }

    body,
    .docs-article-card-main {
        background: #fff;
    }

    .docs-article-shell {
        display: block;
        padding: 0;
    }

    .docs-article-card-main {
        padding: 0;
        border: 0;
        box-shadow: none;
    }
}
