@layer ui {
    :root {
        --font-family-system: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
        --font-family-monospace: 'JetBrains Mono', ui-monospace, 'Roboto Mono', SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
        --prose-max-width: 800px;
        --ui-border-radius-sm: 0.1875rem;
        --ui-border-radius-md: 0.375rem;
        --ui-border-radius-lg: 0.75rem;
        --ui-border-radius-full: 100%;
        --ui-font-size-xs: 0.8125rem;
        --ui-font-size-sm: 0.875rem;
        --ui-font-size-md: 1rem;
        --ui-font-size-lg: 1.15rem;
        --ui-font-size-xl: 1.375rem;
        --ui-font-size-2xl: 1.625rem;

        --ui-page-bg: light-dark(var(--white), var(--gray-800));
        --ui-border-primary-color: light-dark(var(--gray-500), var(--gray-400));
        --ui-border-secondary-color: light-dark(var(--gray-200), var(--gray-600));
        --ui-border-tertiary-color: light-dark(var(--gray-100), var(--gray-700));
        --ui-bg-primary: light-dark(var(--gray-300), var(--gray-500));
        --ui-bg-secondary: light-dark(var(--gray-100), var(--gray-700));
        --ui-bg-tertiary: light-dark(var(--gray-50), var(--gray-800));
        --ui-text-color: light-dark(var(--gray-800), var(--gray-300));
        --ui-text-secondary-color: light-dark(var(--gray-500), var(--gray-400));
        --ui-text-tertiary-color: light-dark(var(--gray-300), var(--gray-600));
        --ui-text-danger-color: light-dark(var(--rose-600), var(--rose-400));

        --ui-link-color: light-dark(#0066cc, var(--blue-300));
        --ui-prose-link-underline-color: light-dark(var(--blue-400), var(--blue-300));
        --ui-heading-title-color: light-dark(var(--gray-700), var(--gray-300));

        --ui-alert-bg: light-dark(var(--blue-100), var(--gray-600));
        --ui-alert-border-color: light-dark(transparent, var(--gray-400));
        --ui-alert-color: var(--text-color);
        --ui-alert-warning-bg: light-dark(var(--amber-100), transparent);
        --ui-alert-warning-border-color: light-dark(transparent, var(--amber-400));
        --ui-alert-warning-color: light-dark(var(--text-color), var(--amber-200));
        --ui-alert-success-bg: light-dark(var(--green-200), transparent);
        --ui-alert-success-border-color: light-dark(transparent, var(--green-500));
        --ui-alert-success-color: light-dark(var(--green-800), var(--green-400));
        --ui-alert-danger-bg: light-dark(var(--red-600), transparent);
        --ui-alert-danger-border-color: light-dark(transparent, var(--red-600));
        --ui-alert-danger-color: light-dark(var(--red-50), var(--red-300));

        --rss-color: light-dark(var(--orange-700), var(--orange-400));

        --ui-form-accent-color: light-dark(var(--blue-600), var(--blue-300));
        --ui-button-primary-bg: light-dark(var(--blue-600), var(--blue-300));
        --ui-button-primary-color: light-dark(var(--white), var(--black));
        --ui-button-primary-border-color: transparent;
        --ui-button-secondary-bg: light-dark(var(--gray-100), var(--gray-600));
        --ui-button-secondary-color: light-dark(var(--gray-600), var(--gray-100));
        --ui-button-secondary-border-color: light-dark(var(--gray-300), var(--gray-500));
        --ui-box-border-color: light-dark(var(--gray-300), var(--gray-600));

        --ui-shadow: 0 4px 6px -1px rgba(156, 163, 175, 0.3), 0 2px 4px -2px rgba(156, 163, 175, 0.4);
        --ui-shadow-lg: 0 10px 15px -3px rgba(156, 163, 175, 0.3), 0 4px 6px -4px rgba(156, 163, 175, 0.4);
        --ui-shadow-xxl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

    /* shadows change more than just a color per theme, so they can't use light-dark() */
    .dark-theme {
        --ui-shadow: 0 4px 6px -1px var(--gray-900), 0 2px 4px -2px var(--gray-900);
        --ui-shadow-lg: 0 10px 15px -3px var(--gray-900), 0 4px 6px -4px var(--gray-900);
        --ui-shadow-xxl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 8px 10px -6px rgba(0, 0, 0, 0.8);
    }

    /* needed to enable the view transitions. See https://developer.chrome.com/docs/web-platform/view-transitions */
    @view-transition {
        /* biome-ignore lint/correctness/noUnknownProperty: this CSS property is correct */
        navigation: auto;
    }
    /* biome-ignore lint/correctness/noUnknownTypeSelector: view transition pseudo-elements */
    ::view-transition-old(root),
    /* biome-ignore lint/correctness/noUnknownTypeSelector: view transition pseudo-elements */
        ::view-transition-new(root) {
        animation-duration: 0.2s;
    }

    @keyframes fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    @keyframes fade-out {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }

    /* utilities for Bootstrap z-index levels */
    .zindex-dropdown {
        z-index: 1000;
    }
    .zindex-sticky {
        z-index: 1020;
    }
    .zindex-fixed {
        z-index: 1030;
    }
    .zindex-offcanvas-backdrop {
        z-index: 1040;
    }
    .zindex-offcanvas {
        z-index: 1045;
    }
    .zindex-modal-backdrop {
        z-index: 1050;
    }
    .zindex-modal {
        z-index: 1055;
    }
    .zindex-popover {
        z-index: 1070;
    }
    .zindex-tooltip {
        z-index: 1080;
    }
    .zindex-toast {
        z-index: 1090;
    }

    #sln {
        background-color: var(--gray-900);
        height: 36px;
        overflow: hidden;
    }
    #sln .sln-bar-inner,
    #sln .sln-dropdown {
        background-color: var(--gray-900);
    }
    #sln,
    #sln .sln-bar {
        position: static !important;
    }

    body {
        background: var(--page-background);
        color: var(--text-color);
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        font-family: var(--font-family-system);
        font-size: 15px;
        line-height: 1.55;
        scroll-behavior: smooth;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: subpixel-antialiased;
    }
    @media (min-width: 768px) {
        body {
            font-size: var(--font-size-md);
        }
    }

    /* Page layout */
    .ui-page-container {
        margin: 0 auto;
        max-width: 1140px;
        padding: 0 15px;
    }
    .ui-page-container-wide {
        max-width: 1400px;
    }
    @media (min-width: 992px) {
        .ui-page-container {
            padding: 0 30px;
        }
    }

    #main-content {
        flex: 1;
        padding: 24px 0 90px;
    }
    @media (min-width: 1200px) {
        #main-content {
            padding: 32px 0 90px;
        }
    }
    @media (min-width: 992px) {
        .ui-page-grid-content-right-sidebar {
            display: grid;
            grid-template-columns: 1fr 200px;
            grid-column-gap: 45px;
        }
        .ui-page-grid-content-left-sidebar-right-sidebar {
            display: grid;
            grid-template-columns: 250px 1fr;
            grid-column-gap: 45px;
            grid-row-gap: 45px;
        }
    }
    @media (min-width: 1200px) {
        .ui-page-grid-content-left-sidebar-right-sidebar {
            display: grid;
            grid-template-columns: 250px 1fr 180px;
            grid-column-gap: 45px;
        }
    }
    @media (min-width: 1400px) {
        .ui-page-grid-content-right-sidebar,
        .ui-page-grid-content-left-sidebar-right-sidebar {
            grid-column-gap: 60px;
        }
    }
    .ui-page-main-content .content section {
        margin-bottom: 45px;
    }
    @media (min-width: 992px) {
        .ui-page-main-content .content section {
            margin-bottom: 60px;
        }
    }
    .ui-sidebar-content-sticky {
        --sticky-margin-top: 2px;

        position: sticky;
        top: var(--sticky-margin-top);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(155, 155, 155, 0.5) transparent;
        height: calc(100vh - var(--sticky-margin-top));
    }
    .ui-sidebar-content-sticky::-webkit-scrollbar {
        width: 6px;
    }
    .ui-sidebar-content-sticky::-webkit-scrollbar-track {
        background: transparent;
    }
    .ui-sidebar-content-sticky::-webkit-scrollbar-thumb {
        background-color: rgba(155, 155, 155, 0.5);
        border-radius: 20px;
        border: transparent;
    }

    svg {
        max-width: 100%;
    }
    .backer_logo svg {
        height: auto;
    }

    .ui-border-primary {
        border: 1px solid var(--ui-border-primary-color);
    }
    .ui-border-secondary {
        border: 1px solid var(--ui-border-secondary-color);
    }
    .ui-border-tertiary {
        border: 1px solid light-dark(var(--gray-100), var(--gray-700));
    }
    @media (max-width: 991px) {
        .ui-no-border-sm-md {
            border: 0 !important;
        }
    }

    .ui-bg-page {
        background-color: var(--ui-page-bg);
    }
    .ui-bg-primary {
        background-color: light-dark(var(--gray-300), var(--gray-500));
    }
    .ui-bg-secondary {
        background-color: var(--ui-bg-secondary);
    }
    .ui-bg-tertiary {
        background-color: var(--ui-bg-tertiary);
    }

    .ui-shadow {
        box-shadow: var(--ui-shadow);
    }
    .ui-shadow-lg {
        box-shadow: var(--ui-shadow-lg);
    }

    .ui-cursor-pointer {
        cursor: pointer !important;
    }
    .ui-cursor-not-allowed {
        cursor: not-allowed !important;
    }
    .ui-nowrap {
        white-space: nowrap;
    }

    .ui-hover-bg-button-primary:hover {
        background: var(--blue-600);
        color: var(--white);
    }
    .ui-hover-bg-secondary:hover {
        background: var(--ui-bg-secondary);
    }
    .ui-hover-outline-link:hover {
        outline: 2px solid var(--ui-link-color);
        outline-offset: -2px;
    }

    .ui-text-primary {
        color: var(--ui-text-color);
    }
    .ui-text-secondary {
        color: var(--ui-text-secondary-color);
    }
    .ui-text-tertiary {
        color: var(--ui-text-tertiary-color);
    }
    .ui-text-balance {
        text-wrap: balance !important;
    }
    .ui-text-muted {
        color: var(--ui-text-secondary-color) !important;
    }
    .ui-text-danger {
        color: var(--ui-text-danger-color) !important;
    }
    .ui-text-xs {
        font-size: var(--ui-font-size-xs) !important;
    }
    .ui-text-sm {
        font-size: var(--ui-font-size-sm) !important;
    }
    .ui-text-md {
        font-size: var(--ui-font-size-md) !important;
    }
    .ui-text-lg {
        font-size: var(--ui-font-size-md) !important;
    }
    .ui-text-xl {
        font-size: var(--ui-font-size-lg) !important;
    }
    .ui-text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .ui-text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    @media (min-width: 992px) {
        .ui-text-xs {
            font-size: var(--ui-font-size-xs) !important;
        }
        .ui-text-sm {
            font-size: var(--ui-font-size-sm) !important;
        }
        .ui-text-md {
            font-size: var(--ui-font-size-md) !important;
        }
        .ui-text-lg {
            font-size: var(--ui-font-size-lg) !important;
        }
        .ui-text-xl {
            font-size: var(--ui-font-size-xl) !important;
        }
        .ui-text-3xl {
            font-size: 2.5rem;
            line-height: 1;
        }
    }
    @media (min-width: 1200px) {
        .ui-text-3xl {
            font-size: 3rem;
            line-height: 1;
        }
    }

    .ui-color-inherit {
        color: inherit !important;
    }

    .ui-font-tabular-numbers {
        font-feature-settings: 'tnum';
        font-variant-numeric: tabular-nums;
    }

    .ui-no-underline,
    .ui-no-underline:hover {
        text-decoration: none !important;
    }

    .ui-link,
    .ui-link:hover {
        color: var(--ui-link-color);
        text-decoration: none;
    }
    .ui-link:hover {
        text-decoration: underline;
    }
    .ui-link-underline,
    .ui-link-underline:hover {
        color: var(--ui-link-color);
        text-decoration: underline;
    }
    .ui-link-underline:hover {
        text-decoration: none;
    }
    .ui-link-muted {
        color: inherit;
        text-decoration: none;
    }
    .ui-link-muted:hover {
        color: var(--ui-link-color);
        text-decoration: underline;
    }
    .ui-link-inherit-color,
    .ui-link-inherit-color:hover {
        color: inherit;
    }
    .ui-link-arrow svg {
        transition: transform 0.1s;
    }
    .ui-link-arrow:hover svg {
        transform: translateX(0.15em);
    }

    .ui-rss-link,
    .ui-rss-link:hover {
        color: light-dark(var(--orange-700), var(--orange-400));
    }
    .ui-prose-link {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-color: var(--ui-prose-link-underline-color);
        text-decoration-thickness: 2px;
    }
    .ui-prose-link:hover {
        color: var(--ui-link-color);
        text-decoration: none;
        border-radius: var(--ui-border-radius-md);
        outline: 2px solid var(--ui-prose-link-underline-color);
        outline-offset: 1px;
    }
    .ui-stretched-link:hover {
        cursor: pointer;
    }
    .ui-stretched-link::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        pointer-events: auto;
        content: '';
        background-color: rgba(0, 0, 0, 0);
    }
    .job-how-to-apply a {
        color: var(--link-color);
        text-decoration: none;
    }
    .job-how-to-apply a:hover {
        text-decoration: underline;
    }

    .ui-list-spaced-items li + li {
        margin-top: 15px;
    }

    hr,
    .ui-hr {
        border: 0;
        background: var(--ui-border-primary-color);
        height: 1px;
        margin: 2rem 0;
    }

    /* ol.arabic is used in docs generated from RST */
    .ui-list-disc,
    .ui-list-numeric,
    ol.arabic {
        margin-left: 1.25em;
    }
    .ui-list-disc li {
        list-style: disc;
    }
    .ui-list-numeric li,
    ol.arabic li {
        list-style: decimal;
    }
    .ui-list-disc li + li,
    .ui-list-numeric li + li,
    ol.arabic li + li {
        margin-top: 0.75em;
    }
    .ui-list-disc li::marker,
    .ui-list-numeric li::marker,
    ol.arabic li::marker {
        color: var(--ui-text-secondary-color);
    }
    .ui-list-marker-small li::marker {
        font-size: var(--ui-font-size-sm);
    }
    .ui-list-two-columns,
    .ui-list-three-columns {
        column-count: 1;
    }
    @media (min-width: 768px) {
        .ui-list-two-columns {
            column-count: 2;
            column-gap: 2rem;
        }
        .ui-list-three-columns {
            column-count: 3;
            column-gap: 2rem;
        }
        :is(.ui-list-two-columns, .ui-list-three-columns) li {
            break-inside: avoid;
        }
    }

    :is(.ui-clamp-3-lines, .ui-clamp-8-lines) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: var(--ui-clamp-num-of-lines);
        line-clamp: var(--ui-clamp-num-of-lines);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ui-clamp-3-lines {
        --ui-clamp-num-of-lines: 3;
    }
    .ui-clamp-8-lines {
        --ui-clamp-num-of-lines: 8;
    }

    .ui-alert {
        background-color: var(--ui-alert-bg);
        border: 2px solid var(--ui-alert-border-color);
        color: var(--ui-alert-color);
        border-radius: var(--ui-border-radius-md);
        margin: 1em 0;
        padding: 10px 15px;
    }

    .ui-alert-warning {
        --ui-alert-bg: light-dark(var(--amber-100), transparent);
        --ui-alert-border-color: light-dark(transparent, var(--amber-400));
        --ui-alert-color: light-dark(var(--text-color), var(--amber-200));
    }
    .ui-alert-danger {
        --ui-alert-bg: light-dark(var(--red-600), transparent);
        --ui-alert-border-color: light-dark(transparent, var(--red-600));
        --ui-alert-color: light-dark(var(--red-50), var(--red-300));
    }
    .ui-alert-success {
        --ui-alert-bg: light-dark(var(--green-200), transparent);
        --ui-alert-border-color: light-dark(transparent, var(--green-500));
        --ui-alert-color: light-dark(var(--green-800), var(--green-400));
    }

    .ui-badge {
        --bs-badge-font-weight: 700;
    }
    .ui-badge-primary {
        --bs-badge-color: var(--ui-button-primary-color);
        background: var(--ui-button-primary-bg);
    }
    .ui-badge-secondary {
        --bs-badge-color: var(--ui-text-color);
        background: var(--gray-200);
    }
    .dark-theme .ui-badge-secondary {
        background: var(--gray-700);
        outline: 1px solid var(--gray-600);
    }
    .ui-badge-danger {
        --bs-badge-color: var(--red-700);
        background: var(--red-100);
    }
    .dark-theme .ui-badge-danger {
        --bs-badge-color: var(--red-100);
        background: var(--red-700);
        outline: 1px solid var(--red-600);
    }
    .ui-badge-warning {
        --bs-badge-color: var(--yellow-700);
        background: var(--yellow-100);
    }
    .dark-theme .ui-badge-warning {
        --bs-badge-color: var(--yellow-100);
        background: var(--yellow-700);
        outline: 1px solid var(--yellow-600);
    }
    .ui-badge-success {
        --bs-badge-color: var(--green-700);
        background: var(--green-100);
    }
    .dark-theme .ui-badge-success {
        background: var(--green-700);
        --bs-badge-color: var(--green-100);
        outline: 1px solid var(--green-600);
    }
    .ui-badge-pill {
        align-items: center;
        background: light-dark(var(--gray-100), var(--gray-700));
        border-radius: 100px;
        color: light-dark(var(--gray-700), var(--gray-300));
        display: inline-flex;
        font-size: var(--ui-font-size-sm);
        padding: 4px 12px;
    }

    .ui-page-menu {
        display: none;
        margin: 0 0 30px 8px;
        padding: 0;
        position: relative;
        left: -1rem;
    }
    @media (min-width: 992px) {
        .ui-page-menu {
            display: block;
        }
    }
    .ui-page-menu li {
        border-radius: 0.1875rem;
        font-size: 14px;
        list-style: none;
        margin: 0 0 4px;
        position: relative;
    }
    .ui-page-menu li:hover {
        background: var(--ui-bg-secondary);
    }
    .ui-page-menu li::after {
        border-radius: var(--ui-border-radius-md);
        content: '';
        height: 1.5rem;
        left: -0.5rem;
        position: absolute;
        top: calc(50% - 12px);
        width: 0.25rem;
    }
    .ui-page-menu li.active {
        background: var(--ui-bg-secondary);
        font-weight: 600;
    }
    .ui-page-menu li.active::after {
        background: var(--link-color);
    }
    .ui-page-menu li a {
        display: block;
        padding: 5px 8px;
    }

    .ui-sitemap {
        margin: 0;
        padding-left: 0;
        column-count: 2;
    }
    .ui-sitemap li {
        break-inside: avoid;
        list-style: none;
        margin-bottom: 8px;
    }
    .ui-sitemap > li + li {
        margin-top: 2rem;
    }
    .ui-sitemap li ul {
        padding-left: 0;
    }
    @media (min-width: 576px) {
        .ui-sitemap {
            column-count: 3;
        }
    }
    @media (min-width: 1200px) {
        .ui-sitemap {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .ui-sitemap > li + li {
            margin-top: 0;
        }
    }

    footer .ui-sitemap .deploy-logo,
    footer .ui-sitemap .deploy-logo svg {
        display: block;
        margin-top: 15px;
        height: 58px;
        width: 155px;
    }
    .ui-error-page-sitemap a,
    .ui-error-page-sitemap a:hover {
        color: var(--ui-link-color);
    }
    .ui-error-page-sitemap p a {
        color: inherit;
    }
    .ui-error-page-sitemap a:hover {
        text-decoration: underline;
    }
    @media (min-width: 1200px) {
        .ui-error-page-sitemap {
            display: block;
            column-count: 4;
        }
        .ui-error-page-sitemap .ui-sitemap-menu {
            margin-bottom: 45px;
        }
    }
    .ui-box {
        border: 1px solid var(--ui-box-border-color);
        border-radius: var(--ui-border-radius-md);
        margin: var(--margin-md) 0 var(--margin-md);
        padding: 15px;
    }
    .ui-box-secondary {
        background: light-dark(var(--gray-100), var(--gray-700));
        border-color: transparent;
    }
    .ui-box-danger {
        background: light-dark(var(--red-100), var(--red-900));
    }
    .ui-box-empty {
        border-style: dashed;
    }
    .ui-box-large-paddings {
        padding: 30px;
    }
    @media (min-width: 992px) {
        .ui-box-large-paddings {
            padding: 45px;
        }
    }
    .ui-box-small-paddings {
        padding: 5px 10px;
    }

    .ui-box-link-outline:hover {
        cursor: pointer;
        outline: 2px solid var(--ui-link-color);
        outline-offset: -1px;
        text-decoration: none;
    }

    .ui-button {
        background: var(--ui-button-bg);
        border-radius: var(--ui-border-radius-md);
        border: 1px solid var(--ui-border-color);
        color: var(--ui-button-color);
        cursor: pointer;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        gap: 0.25rem;
        height: 2rem;
        min-width: max-content;
        padding: 0 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        -webkit-user-select: none;
        user-select: none;
    }
    .ui-button-block {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .ui-button-sm {
        height: 1.75rem;
        padding: 0 0.5rem;
    }
    .ui-button-primary,
    .ui-button-primary:hover {
        --ui-button-bg: var(--ui-button-primary-bg);
        --ui-border-color: var(--ui-button-primary-border-color);
        --ui-button-color: var(--ui-button-primary-color);
    }
    .ui-button-primary.ui-button-danger {
        --ui-button-bg: var(--ui-text-danger-color);
        --ui-border-color: var(--ui-text-danger-color);
        --ui-button-color: var(--white);
    }
    .ui-button-secondary {
        --ui-button-bg: var(--ui-button-secondary-bg);
        --ui-border-color: var(--ui-button-secondary-border-color);
        --ui-button-color: var(--ui-button-secondary-color);
    }
    .ui-button-secondary:hover {
        --ui-button-bg: var(--ui-button-primary-bg);
        --ui-border-color: var(--ui-button-primary-border-color);
        --ui-button-color: var(--ui-button-primary-color);
    }
    .ui-button-secondary.ui-button-danger {
        --ui-button-color: var(--ui-text-danger-color);
    }
    .ui-button-text,
    .ui-button-text:hover {
        --ui-button-bg: transparent;
        --ui-border-color: transparent;
        --ui-button-color: inherit;

        border: 0;
        color: inherit;
    }
    .ui-button-text:hover {
        text-decoration: underline;
    }
    .ui-button-text.ui-button-primary {
        --ui-button-color: var(--ui-button-primary-bg);
    }
    .ui-button-text.ui-button-danger {
        --ui-button-color: var(--ui-text-danger-color);
    }
    .ui-button-copy {
        --ui-button-bg: var(--gray-500);
        --ui-border-color: var(--gray-700);
        --ui-button-color: var(--gray-50);

        font-family: var(--font-family-system);
    }

    .ui-avatar {
        border-radius: var(--ui-border-radius-md);
    }
    .ui-avatar-with-border {
        border: 1px solid var(--ui-border-secondary-color);
    }

    footer .ui-contributor.ui-contributor-horizontal {
        background: var(--page-background);
        border-radius: var(--ui-border-radius-md);
        box-shadow:
            0 1px 3px 0 rgba(0, 0, 0, 0.1),
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    }

    .ui-metrics {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0 0 45px;
    }
    .ui-metrics .ui-metric + .ui-metric {
        margin-top: 30px;
    }
    .ui-metric {
        padding: 10px 15px;
    }
    .ui-metric .value {
        font-size: 28px;
        font-feature-settings: 'tnum';
        font-variant-numeric: tabular-nums;
    }
    .ui-metric .label {
        color: var(--ui-text-secondary-color);
        display: block;
    }
    @media (min-width: 768px) {
        .ui-metrics {
            flex-direction: row;
        }
        .ui-metric {
            padding: 15px 45px;
            text-align: center;
        }
        .ui-metrics .ui-metric + .ui-metric {
            border-left: 1px solid var(--ui-border-secondary-color);
            margin-top: 0;
        }
    }

    .ui-card {
        --bs-card-bg: var(--page-background);
        --bs-card-color: var(--text-color);
        --bs-card-border-color: transparent;
        --bs-card-cap-bg: transparent;
        --bs-card-spacer-y: 1.5rem;
        --bs-card-spacer-x: 1.5rem;

        height: 100%;
    }
    .ui-card .card-footer {
        --bs-card-cap-padding-y: 0.75rem;
        --bs-card-cap-padding-x: 1.55rem;

        border-top: 0;
    }
    .ui-card-border {
        --bs-card-border-color: var(--ui-border-secondary-color);
    }
    .ui-card-hover-border:hover {
        box-shadow: inset 0 0 0 2px var(--link-color);
    }
    .ui-card-hover-elevate {
        box-shadow: none;
        position: relative;
        top: 0;
        transition: all 100ms ease-in-out;
    }
    .ui-card-hover-elevate:hover {
        box-shadow: var(--ui-shadow-xxl);
        top: -10px;
    }
    .ui-card-large-padding {
        --bs-card-spacer-y: 2rem;
        --bs-card-spacer-x: 2rem;
    }
    .ui-card-small-padding .card-footer {
        --bs-card-cap-padding-y: 1rem;
        --bs-card-cap-padding-x: 2rem;
    }
    .ui-card-small-padding {
        --bs-card-spacer-y: 0.75rem;
        --bs-card-spacer-x: 0.75rem;
    }
    .ui-card-small-padding .card-footer {
        --bs-card-cap-padding-y: 0.375rem;
        --bs-card-cap-padding-x: 0.75rem;
    }
    .ui-card-active {
        background: light-dark(rgba(var(--blue-300-as-rgb), 0.2), rgba(var(--blue-300-as-rgb), 0.15));
        box-shadow: inset 0 0 0 2px var(--link-color);
    }

    .dropdown-menu {
        --bs-dropdown-bg: var(--page-background);
        --bs-dropdown-border-color: var(--ui-border-secondary-color);
    }
    .dropdown-item {
        --bs-dropdown-link-color: var(--text-color);
    }
    .dropdown-item:hover {
        --bs-dropdown-link-hover-bg: var(--ui-bg-secondary);
    }

    /* FORMS */
    input::placeholder,
    textarea::placeholder {
        color: var(--ui-text-tertiary-color);
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-label,
    fieldset legend {
        font-weight: 600;
        margin: 0 0 5px;
    }
    .form-label.required:after {
        bottom: 4px;
        color: var(--red-500);
        content: '*';
        filter: opacity(75%);
        font-size: 16px;
        position: relative;
        right: -2px;
    }
    .ui-form-no-required-asterisks .form-label.required:after {
        display: none;
    }
    .form-control {
        border: 1px solid var(--ui-border-primary-color);
        color: var(--ui-text-color);
        padding: 0.25rem 0.75rem;
    }
    .form-control:focus,
    .form-control:focus-visible,
    .form-select:focus {
        border-color: transparent;
        outline: 2px solid var(--ui-form-accent-color);
        outline-offset: -2px;
        box-shadow: none;
    }
    .form-control.is-invalid:focus,
    .was-validated .form-control:invalid:focus,
    .form-check-input.is-invalid:focus,
    .was-validated .form-check-input:invalid:focus,
    .form-select.is-invalid:focus,
    .was-validated .form-select:invalid:focus {
        box-shadow: none;
        outline: 2px solid var(--ui-text-danger-color);
    }
    .form-check {
        margin-bottom: 10px;
    }
    .form-check label:hover {
        cursor: pointer;
    }
    .form-check-input {
        border: 1px solid var(--ui-border-primary-color);
        color: var(--ui-text-color);
    }
    .form-check-input:checked {
        background-color: var(--ui-form-accent-color);
        border-color: var(--ui-form-accent-color);
    }
    .form-check-input:focus {
        box-shadow: none;
        outline: 1px solid var(--ui-form-accent-color);
        outline-offset: 2px;
    }
    .form-select {
        background-color: var(--ui-page-bg);
        background-position: right 0.5rem center;
        border: 1px solid var(--ui-border-primary-color);
        color: var(--ui-text-color);
        padding: 0.25rem 2rem 0.25rem 0.75rem;
    }
    .dark-theme .form-select {
        --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d1d5db' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    }
    .dark-theme .form-check-input:checked[type='radio'] {
        --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%231f2937'/%3e%3c/svg%3e");
    }
    .dark-theme .form-check-input:checked[type='checkbox'] {
        --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%231f2937' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    }
    .form-text {
        color: var(--ui-text-secondary-color);
        font-size: 0.95rem;
    }
    form .invalid-feedback {
        font-size: 0.95rem;
    }
    .form-select.ui-text-sm {
        background-position: right 0.3rem center;
        background-size: 14px 10px;
        padding: 0.15rem 1.75rem 0.15rem 0.5rem;
    }
    .ui-form-control-rounded {
        border-radius: 2rem;
    }
    .ui-form-control-search-icon {
        /* the 'background' shorthand resets the background-color applied by Bootstrap's .form-control,
       so the page background color must be set explicitly to not make the input transparent */
        background: var(--ui-page-bg) no-repeat 10px center
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m18 11l-6-6"/></svg>');
        background-size: 18px 18px;
        content: '';
        padding-left: 36px;
    }
    .dark-theme .ui-form-control-search-icon {
        background: var(--ui-page-bg) no-repeat 10px center
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="%23d1d5db" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m18 11l-6-6"/></svg>');
    }
    .form-select.ui-form-select-dark {
        background: no-repeat var(--gray-800) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e5e7eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-position: right 0.5rem center;
        background-size: 16px 12px;
        border: 1px solid var(--gray-400);
        color: var(--white);
    }
    .form-select.ui-form-select-dark:focus {
        outline-color: var(--gray-100);
    }

    .ui-prose.ui-prose-short-line-length {
        max-width: 80ch;
    }
    .ui-prose {
        /* needed to force the breaking of very long words (e.g. class FQCN, long URLs) */
        /* copied from https://css-tricks.com/better-line-breaks-for-long-urls/ */
        /* These are technically the same, but use both */
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        /* Adds a hyphen where the word breaks, if supported (No Blink) */
        hyphens: auto;
    }
    .ui-prose :is(p, blockquote, ul, ol, table) {
        margin-bottom: var(--margin-md);
    }
    .ui-prose blockquote {
        padding: 0 var(--margin-md);
        border-left: 2px solid var(--ui-border-secondary-color);
        font-style: italic;
    }
    .ui-prose :is(img, figure, object) {
        margin-bottom: var(--margin-md);
        /* this avoids overflowing the available space */
        max-width: 100%;
        /* needed to avoids stretching images when setting a width and height attribute on the img element */
        height: auto;
    }
    .ui-prose a:has(img) {
        display: inline-block;
        margin-bottom: var(--margin-md);
    }
    .ui-prose a img {
        margin-bottom: 0;
    }
    .ui-prose a,
    .ui-prose a:hover,
    .ui-prose a:active {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-color: var(--ui-prose-link-underline-color);
        text-decoration-thickness: 2px;
    }
    .ui-prose a:hover {
        color: var(--ui-link-color);
        text-decoration: none;
    }
    .ui-prose a:not(h1 a, h2 a, h3 a, h4 a, h5 a, h6 a):hover {
        border-radius: var(--ui-border-radius-md);
        outline: 2px solid var(--ui-prose-link-underline-color);
        outline-offset: 1px;
    }
    .ui-prose a:active {
        position: relative;
        top: 1px;
    }
    .ui-prose
        a:not(
            :is(
                    .internal,
                    [href^='#'],
                    [href^='../'],
                    [href^='/'],
                    [href^='https://symfony.com'],
                    [href^='https://live.symfony.com'],
                    [href^='https://connect.symfony.com'],
                    [href^='https://certification.symfony.com'],
                    [href^='https://github.com'],
                    [href^='https://www.php.net'],
                    [href^='https://php.net'],
                    [href^='https://secure.php.net'],
                    a[href*='wikipedia.org']
                )
        ):after {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="16" viewBox="0 0 24 24" stroke="%236b7280"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" /></svg>');
        line-height: 1;
        margin-left: 0.2em;
        vertical-align: middle;
    }
    body.dark-theme
        .ui-prose
        a:not(
            :is(
                    .internal,
                    [href^='#'],
                    [href^='../'],
                    [href^='https://symfony.com'],
                    [href^='https://live.symfony.com'],
                    [href^='https://connect.symfony.com'],
                    [href^='https://certification.symfony.com'],
                    [href^='https://github.com'],
                    [href^='https://www.php.net'],
                    [href^='https://php.net'],
                    [href^='https://secure.php.net'],
                    a[href*='wikipedia.org']
                )
        ):after {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="16" viewBox="0 0 24 24" stroke="%239ca3af"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" /></svg>');
    }
    .ui-prose a[href^='https://github.com']:before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" viewBox="0 0 32 32"><path fill="%2324292E" fill-rule="evenodd" d="M16 0a16 16 0 0 0-5 31.2c.7.1 1-.4 1-.8v-3c-4 .8-5-1-5.4-1.8-.1-.5-1-2-1.6-2.3-.6-.3-1.4-1 0-1 1.2 0 2.1 1.1 2.4 1.6 1.5 2.4 3.8 1.7 4.7 1.3.1-1 .6-1.7 1-2.1-3.5-.4-7.3-1.8-7.3-8 0-1.7.7-3.1 1.7-4.2-.2-.4-.7-2 .1-4.3 0 0 1.4-.4 4.4 1.7a14.8 14.8 0 0 1 8 0c3.1-2.1 4.4-1.7 4.4-1.7 1 2.2.4 3.9.2 4.3a6 6 0 0 1 1.6 4.3c0 6.1-3.7 7.5-7.3 7.9.6.5 1.1 1.4 1.1 3v4.3c0 .4.3 1 1.1.8A16 16 0 0 0 16 0Z" clip-rule="evenodd"/></svg>');
        line-height: 1;
        margin-right: 0.2em;
        margin-left: 0.1em;
        vertical-align: middle;
    }
    .ui-prose :is(a[href^='https://www.php.net'], a[href^='https://php.net'], a[href^='https://secure.php.net']):before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 16 16"><rect width="16" height="16" fill="%234f5b93" rx="2"/><path fill="%23fff" d="M2.1 6h2c.7 0 1.1.1 1.4.5s.4.8.3 1.4a2.7 2.7 0 0 1-.3.8c0 .3-.2.5-.5.7-.2.3-.5.5-.8.5l-.9.1h-1l-.2 1.5H1L2.1 6m1 .8-.6 2.4a.6.6 0 0 0 .1 0h.2c.4 0 .9 0 1.2-.2.3 0 .5-.5.7-1.1 0-.5 0-.9-.3-1h-1a2.2 2.2 0 0 1-.2 0H3m4-2.4h1L7.9 6h1c.5 0 .9 0 1.1.3.3.2.4.6.2 1.2L9.6 10h-1L9 7.6V7H7.6L7 10H5.9L7 4.5M11.3 6h2c.7 0 1.1.1 1.4.5s.4.8.3 1.4a2.7 2.7 0 0 1-.3.8c0 .3-.3.5-.5.7-.2.3-.5.5-.8.5l-1 .1h-.8l-.3 1.5h-1.1l1-5.5m1 .8-.5 2.4a.6.6 0 0 0 .1 0h.1c.5 0 1 0 1.3-.2.3 0 .5-.5.6-1.1.1-.5 0-.9-.2-1h-1a2.2 2.2 0 0 1-.2 0h-.2"/></svg>');
        line-height: 1;
        margin-right: 0.2em;
        margin-left: 0.1em;
        vertical-align: middle;
    }
    .ui-prose a[href*='wikipedia.org']:before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="16" height="16"><path fill="%23111827" d="M 9 4 C 6.2504839 4 4 6.2504839 4 9 L 4 41 C 4 43.749516 6.2504839 46 9 46 L 41 46 C 43.749516 46 46 43.749516 46 41 L 46 9 C 46 6.2504839 43.749516 4 41 4 L 9 4 z M 9 6 L 41 6 C 42.668484 6 44 7.3315161 44 9 L 44 41 C 44 42.668484 42.668484 44 41 44 L 9 44 C 7.3315161 44 6 42.668484 6 41 L 6 9 C 6 7.3315161 7.3315161 6 9 6 z M 18.375 15.998047 C 18.196 15.998047 18.017578 16.173656 18.017578 16.347656 L 18.017578 17.650391 C 18.017578 17.825391 18.196 18 18.375 18 L 19.810547 18 L 24.105469 26.019531 L 20.705078 32.119141 L 14.263672 18 L 15.642578 18 C 15.821578 18 16 17.826344 16 17.652344 L 16 16.349609 C 16 16.174609 15.821578 16 15.642578 16 L 8.3574219 16 C 8.1784219 16 8 16.173656 8 16.347656 L 8 17.650391 C 8 17.825391 8.1784219 18 8.3574219 18 L 10.505859 18 L 19.810547 36.826172 C 19.900547 36.913172 19.988969 37 20.167969 37 C 20.346969 37 20.437344 36.913172 20.527344 36.826172 L 25.269531 28.287109 L 29.652344 36.826172 C 29.742344 36.913172 29.832719 37 30.011719 37 C 30.189719 37 30.278187 36.913172 30.367188 36.826172 L 39.583984 17.912109 L 41.642578 17.912109 C 41.821578 17.912109 42 17.738453 42 17.564453 L 42 16.349609 C 42 16.174609 41.821578 16 41.642578 16 L 35.357422 16 C 35.178422 16 35 16.173656 35 16.347656 L 35 17.650391 C 35 17.825391 35.179422 18 35.357422 18 L 37.167969 18 L 30.457031 32.119141 L 26.96875 25.148438 L 31.263672 18 L 32.642578 18 C 32.821578 18 33 17.826344 33 17.652344 L 33 16.349609 C 33 16.174609 32.821578 16 32.642578 16 L 27.357422 16 C 27.178422 16 27 16.173656 27 16.347656 L 27 17.650391 C 27 17.825391 27.178422 18 27.357422 18 L 28.757812 18 L 25.804688 22.884766 L 23.388672 18 L 24.642578 18 C 24.821578 18 25 17.826344 25 17.652344 L 25 16.349609 C 25 16.174609 24.821578 15.999047 24.642578 15.998047 L 18.375 15.998047 z"/></svg>');
        line-height: 1;
        margin-right: 0.2em;
        margin-left: 0.1em;
        vertical-align: middle;
    }
    body.dark-theme .ui-prose a[href^='https://github.com']:before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" viewBox="0 0 32 32"><path fill="%23e5e7eb" fill-rule="evenodd" d="M16 0a16 16 0 0 0-5 31.2c.7.1 1-.4 1-.8v-3c-4 .8-5-1-5.4-1.8-.1-.5-1-2-1.6-2.3-.6-.3-1.4-1 0-1 1.2 0 2.1 1.1 2.4 1.6 1.5 2.4 3.8 1.7 4.7 1.3.1-1 .6-1.7 1-2.1-3.5-.4-7.3-1.8-7.3-8 0-1.7.7-3.1 1.7-4.2-.2-.4-.7-2 .1-4.3 0 0 1.4-.4 4.4 1.7a14.8 14.8 0 0 1 8 0c3.1-2.1 4.4-1.7 4.4-1.7 1 2.2.4 3.9.2 4.3a6 6 0 0 1 1.6 4.3c0 6.1-3.7 7.5-7.3 7.9.6.5 1.1 1.4 1.1 3v4.3c0 .4.3 1 1.1.8A16 16 0 0 0 16 0Z" clip-rule="evenodd"/></svg>');
    }
    body.dark-theme .ui-prose :is(a[href^='https://www.php.net']:before, a[href^='https://php.net']:before, a[href^='https://secure.php.net']:before) {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 16 16"><rect width="16" height="16" fill="%236773ad" rx="2"/><path fill="%23fff" d="M2.1 6h2c.7 0 1.1.1 1.4.5s.4.8.3 1.4a2.7 2.7 0 0 1-.3.8c0 .3-.2.5-.5.7-.2.3-.5.5-.8.5l-.9.1h-1l-.2 1.5H1L2.1 6m1 .8-.6 2.4a.6.6 0 0 0 .1 0h.2c.4 0 .9 0 1.2-.2.3 0 .5-.5.7-1.1 0-.5 0-.9-.3-1h-1a2.2 2.2 0 0 1-.2 0H3m4-2.4h1L7.9 6h1c.5 0 .9 0 1.1.3.3.2.4.6.2 1.2L9.6 10h-1L9 7.6V7H7.6L7 10H5.9L7 4.5M11.3 6h2c.7 0 1.1.1 1.4.5s.4.8.3 1.4a2.7 2.7 0 0 1-.3.8c0 .3-.3.5-.5.7-.2.3-.5.5-.8.5l-1 .1h-.8l-.3 1.5h-1.1l1-5.5m1 .8-.5 2.4a.6.6 0 0 0 .1 0h.1c.5 0 1 0 1.3-.2.3 0 .5-.5.6-1.1.1-.5 0-.9-.2-1h-1a2.2 2.2 0 0 1-.2 0h-.2"/></svg>');
    }
    body.dark-theme .ui-prose a[href*='wikipedia.org']:before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="16" height="16"><path fill="%23e5e7eb" d="M 9 4 C 6.2504839 4 4 6.2504839 4 9 L 4 41 C 4 43.749516 6.2504839 46 9 46 L 41 46 C 43.749516 46 46 43.749516 46 41 L 46 9 C 46 6.2504839 43.749516 4 41 4 L 9 4 z M 9 6 L 41 6 C 42.668484 6 44 7.3315161 44 9 L 44 41 C 44 42.668484 42.668484 44 41 44 L 9 44 C 7.3315161 44 6 42.668484 6 41 L 6 9 C 6 7.3315161 7.3315161 6 9 6 z M 18.375 15.998047 C 18.196 15.998047 18.017578 16.173656 18.017578 16.347656 L 18.017578 17.650391 C 18.017578 17.825391 18.196 18 18.375 18 L 19.810547 18 L 24.105469 26.019531 L 20.705078 32.119141 L 14.263672 18 L 15.642578 18 C 15.821578 18 16 17.826344 16 17.652344 L 16 16.349609 C 16 16.174609 15.821578 16 15.642578 16 L 8.3574219 16 C 8.1784219 16 8 16.173656 8 16.347656 L 8 17.650391 C 8 17.825391 8.1784219 18 8.3574219 18 L 10.505859 18 L 19.810547 36.826172 C 19.900547 36.913172 19.988969 37 20.167969 37 C 20.346969 37 20.437344 36.913172 20.527344 36.826172 L 25.269531 28.287109 L 29.652344 36.826172 C 29.742344 36.913172 29.832719 37 30.011719 37 C 30.189719 37 30.278187 36.913172 30.367188 36.826172 L 39.583984 17.912109 L 41.642578 17.912109 C 41.821578 17.912109 42 17.738453 42 17.564453 L 42 16.349609 C 42 16.174609 41.821578 16 41.642578 16 L 35.357422 16 C 35.178422 16 35 16.173656 35 16.347656 L 35 17.650391 C 35 17.825391 35.179422 18 35.357422 18 L 37.167969 18 L 30.457031 32.119141 L 26.96875 25.148438 L 31.263672 18 L 32.642578 18 C 32.821578 18 33 17.826344 33 17.652344 L 33 16.349609 C 33 16.174609 32.821578 16 32.642578 16 L 27.357422 16 C 27.178422 16 27 16.173656 27 16.347656 L 27 17.650391 C 27 17.825391 27.178422 18 27.357422 18 L 28.757812 18 L 25.804688 22.884766 L 23.388672 18 L 24.642578 18 C 24.821578 18 25 17.826344 25 17.652344 L 25 16.349609 C 25 16.174609 24.821578 15.999047 24.642578 15.998047 L 18.375 15.998047 z"/></svg>');
    }
    .ui-prose .blog-post-contributor-info a::after,
    .ui-prose .toctree-wrapper a::after {
        content: none !important;
    }
    .ui-prose .blog-post-contributor-info a:hover {
        outline: 0;
    }
    .ui-prose a[href^='http']:has(img)::before,
    .ui-prose a[href^='http']:has(img)::after,
    body.dark-theme .ui-prose a[href^='http']:has(img)::before,
    body.dark-theme .ui-prose a[href^='http']:has(img)::after {
        content: none;
    }
    .ui-prose :is(h1, h2, h3, h4, h5, h6) {
        scroll-margin-top: 15px; /* this adds some top white space when clicking on anchors */
        margin: 1.2em 0 0.3em;
        text-wrap: pretty;
    }
    .ui-prose h1,
    /* needed for doc articles that start with an <h2> element (because the <h1> page title is displayed separately) */
        .ui-prose,
    .prose > .section:first-child > .section:first-of-type,
    :is(.ui-prose, .page-content .content) .prose > .section:first-child > .section:first-of-type h2 {
        margin-top: 0;
    }
    .ui-prose :is(h1, h2, h3, h4, h5, h6) a,
    .ui-prose :is(h1, h2, h3, h4, h5, h6) a:hover {
        background: none;
        color: inherit;
        text-decoration: none;
    }
    .ui-prose :is(ul, ol, dl) {
        margin: 1em 0 var(--margin-md) 1.5em;
        padding-left: 0;
    }
    .ui-prose ul {
        list-style: disc outside;
    }
    .ui-prose ol {
        list-style: decimal outside;
    }
    .ui-prose dl {
        margin-left: 0;
        padding-left: 1em;
        position: relative;
    }
    .ui-prose dl:before {
        content: ' ';
        border: 1px solid var(--ui-border-secondary-color);
        border-right: 0;
        height: calc(100% + 1.25em);
        width: 10px;
        position: absolute;
        left: 0;
        top: -0.75em;
    }
    .ui-prose dl .codeblock,
    .ui-prose dl .codeblock.codeblock-length-md {
        margin-left: 0;
    }
    .ui-prose ul li::marker {
        color: light-dark(var(--gray-400), var(--gray-500));
    }
    .ui-prose ol li::marker {
        color: var(--ui-text-secondary-color);
        font-weight: 500;
    }
    .ui-prose li + li {
        margin-top: 0.75em;
    }
    .ui-prose li :is(ul, ol) {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    .ui-prose li :is(ul li, ol li) {
        margin-bottom: 0.5rem;
    }
    .ui-prose li :is(.codeblock, .codeblock.codeblock-length-sm) {
        margin-left: 0;
    }

    .ui-prose dt {
        font-weight: bold;
    }
    .ui-prose dt code {
        font-weight: normal;
    }
    .ui-prose dd {
        margin: 0 0 var(--margin-md) 1em;
    }
    /* needed to make tables responsive */
    .ui-prose .table-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: var(--margin-md);
    }
    .ui-prose .table-wrapper table {
        margin-bottom: 0;
    }
    .ui-prose table {
        border: 0;
        border-collapse: collapse;
        margin-bottom: var(--margin-md);
    }
    .ui-prose :is(td, th) {
        border: 1px solid var(--table-border-color);
        padding: 0.5rem 0.75rem;
        text-align: left;
        vertical-align: top;
    }
    .ui-prose th {
        background: light-dark(var(--gray-100), var(--gray-700));
        font-size: 15px;
        font-weight: 600;
        line-height: var(--line-height-xs);
        position: sticky;
        top: 0; /* required for sticky position */
        vertical-align: middle;
    }
    @media (min-width: 768px) {
        .ui-prose th {
            font-size: 16px;
        }
    }
    .ui-prose th code {
        background: transparent;
        border: 0;
        font-family: inherit;
        font-size: inherit;
        padding: 0;
    }
    .ui-prose :is(td *:last-child, th *:last-child) {
        margin-bottom: 0;
    }
    .ui-prose td a {
        border-color: transparent;
    }

    .ui-prose code,
    /* needed to provide same styles when outside of a .ui-prose element */
        .ui-prose-code {
        background: light-dark(var(--gray-100), rgba(249, 250, 251, 0.06));
        border-radius: var(--ui-border-radius-md);
        border-bottom: 1px solid var(--ui-border-secondary-color);
        color: var(--text-color);
        padding: 0 3px;
        word-break: break-word;
    }
    .ui-prose :is(h1 code, h2 code, h3 code, h4 code, h5 code, h6 code) {
        color: inherit;
        font-weight: inherit;
        font-family: inherit;
        font-size: inherit;
    }

    /* needed to tweak some styles in user provided contents */
    .ui-prose.ui-prose-blog-comment :last-child {
        margin-bottom: 0;
    }
    .ui-prose.ui-prose-blog-comment strong,
    .ui-prose.ui-prose-blog-comment em {
        font-style: normal;
        font-weight: normal;
    }
    .ui-prose.ui-prose-blog-comment pre {
        border-left: 1px solid var(--ui-border-secondary-color);
        padding-left: 1em;
        margin-bottom: var(--margin-md);
    }
    .ui-prose.ui-prose-blog-comment pre code {
        background: transparent;
        border-radius: 0;
        border: 0;
        padding: 0;
    }

    .ui-heading:has(h1) {
        margin-bottom: 2rem;
    }
    .ui-heading:has(h2) {
        margin-bottom: 1rem;
    }
    .ui-heading:has(h3),
    .ui-heading:has(h4),
    .ui-heading:has(h5),
    .ui-heading:has(h6) {
        margin-bottom: 0.5rem;
    }
    .ui-heading-title,
    .ui-prose :is(h1, h2, h3, h4, h5, h6) {
        color: var(--ui-heading-title-color);
        font-weight: 700;
        scroll-margin-top: 15px;
        text-wrap: pretty;
    }
    .ui-heading-title-prefix {
        display: block;
        font-size: 0.7em;
        font-weight: 600;
        margin-bottom: 0.2em;
    }
    .dark-theme .ui-heading-title,
    .dark-theme .ui-prose :is(h1, h2, h3, h4, h5, h6) {
        font-weight: 600;
    }
    h1.ui-heading-title,
    .ui-prose h1 {
        font-size: 28px;
        line-height: 1.1073;
    }
    h2.ui-heading-title,
    .ui-prose h2 {
        font-size: 24px;
        line-height: 1.20849;
    }
    h3.ui-heading-title,
    .ui-prose h3 {
        font-size: 19px;
        line-height: 1.26316;
    }
    h4.ui-heading-title,
    h5.ui-heading-title,
    h6.ui-heading-title,
    .ui-prose h4,
    .ui-prose h5,
    .ui-prose h6 {
        font-size: 16px;
        line-height: 1.55556;
    }

    .ui-heading abbr {
        border: 0;
        text-decoration: 0;
    }

    .ui-heading:has(.ui-heading-link),
    .ui-prose :is(h1, h2, h3, h4, h5, h6):has(.headerlink) {
        position: relative;
    }
    .ui-heading-link:before,
    .ui-prose :is(h1, h2, h3, h4, h5, h6) .headerlink:before {
        content: '#';
        color: var(--blue-300);
        font-size: 1.1em;
        font-weight: normal;
        opacity: 0;
        position: absolute;
        top: -1px; /* needed for "optical vertical aligning", because headers start with uppercase */
        left: -0.8em;
    }
    .ui-heading-link:hover:before,
    .ui-prose :is(h1, h2, h3, h4, h5, h6) .headerlink:hover:before {
        animation: fade-in 0.2s both;
        cursor: pointer;
        opacity: 1;
    }
    .ui-heading-subtitle {
        color: var(--ui-text-secondary-color);
        margin-top: 10px;
        text-wrap: balance;
    }

    h1.ui-heading-title + .ui-heading-subtitle {
        font-size: var(--ui-font-size-lg);
        line-height: 1.3;
    }

    @media (min-width: 992px) {
        .ui-heading {
            margin-bottom: 32px;
        }
        .ui-heading-title {
            font-size: 32px;
            margin-bottom: 8px;
        }
        h1.ui-heading-title,
        .ui-prose h1 {
            font-size: 34px;
            line-height: 1.08824;
        }
        h2.ui-heading-title,
        .ui-prose h2 {
            font-size: 28px;
            line-height: 1.1073;
        }
        h3.ui-heading-title,
        .ui-prose h3 {
            font-size: 21px;
            line-height: 1.22739;
        }
        h4.ui-heading-title,
        h5.ui-heading-title,
        h6.ui-heading-title,
        .ui-prose h4,
        .ui-prose h5,
        .ui-prose h6 {
            font-size: 18px;
            line-height: 1.5;
        }
        h1.ui-heading-title + .ui-heading-subtitle {
            font-size: var(--ui-font-size-xl);
        }
    }
    @media (min-width: 1200px) {
        .ui-heading-title {
            font-size: 36px;
            margin-bottom: 10px;
        }
        h1.ui-heading-title,
        .ui-prose h1 {
            font-size: 36px;
            line-height: 1.05;
        }
        h2.ui-heading-title,
        .ui-prose h2 {
            font-size: 28px;
            line-height: 1.09375;
        }
        h3.ui-heading-title,
        .ui-prose h3 {
            font-size: 22px;
            line-height: 1.20849;
        }
        h4.ui-heading-title,
        h5.ui-heading-title,
        h6.ui-heading-title,
        .ui-prose h4,
        .ui-prose h5,
        .ui-prose h6 {
            font-size: 18px;
            line-height: 1.47621;
        }
    }

    :not(.sidebar) .toctree a,
    :not(.sidebar) .toctree a:hover {
        color: var(--ui-link-color);
        text-decoration: none;
    }
    :not(.sidebar) .toctree a:hover {
        text-decoration: underline;
        outline: none;
    }

    .is-doc-index-page .search-results-wrapper {
        box-shadow: var(--ui-shadow-xxl);
    }
    .doc-action.content-edit {
        position: relative;
        top: -10px;
    }

    .ui-book-shadow {
        box-shadow:
            4px 4px 0 var(--ui-page-bg),
            8px 8px 0 var(--ui-border-secondary-color);
    }

    .ui-details-unstyled > summary {
        list-style: none;
    }
    .ui-details-unstyled > summary::-webkit-details-marker {
        display: none;
    }

    [data-theme='ui-tooltip'].tippy-box {
        box-shadow: var(--ui-shadow-lg);
        background: var(--ui-bg-tertiary);
        color: var(--ui-text-color);
        border: 1px solid var(--ui-border-secondary-color);
    }
    [data-theme='ui-tooltip'] .tippy-content {
        padding: 0.75em 1.5em;
    }

    /* Bootstrap components customization */

    .accordion {
        --bs-accordion-color: var(--text-color);
        --bs-accordion-border-color: var(--ui-border-secondary-color);
        --bs-accordion-bg: var(--ui-page-bg);
        --bs-accordion-active-bg: var(--ui-bg-secondary);
        --bs-accordion-btn-bg: var(--ui-page-bg);
        --bs-accordion-btn-color: var(--text-color);
        --bs-accordion-active-color: var(--ui-link-color);
        --bs-accordion-btn-focus-box-shadow: none;
    }

    .table {
        --bs-table-border-color: var(--ui-border-secondary-color);
        --bs-table-bg: transparent;
        --bs-table-hover-bg: var(--ui-bg-secondary);
        --bs-table-color: var(--text-color);
        --bs-table-hover-color: var(--text-color);
    }

    .breadcrumb {
        --bs-breadcrumb-divider-color: var(--gray-400);
        --bs-breadcrumb-item-active-color: var(--ui-text-secondary-color);
        --bs-breadcrumb-border-radius: 0;
        --bs-breadcrumb-margin-bottom: 0;
    }
    .dark-theme .breadcrumb {
        --bs-breadcrumb-divider-color: var(--gray-500);
        --bs-breadcrumb-item-active-color: var(--ui-text-secondary-color);
    }
}
