.wiki-page {
    --wiki-accent: #6d3cc8;
    --wiki-accent-soft: #f1eafe;
    --wiki-border: #dfe3eb;
    --wiki-muted: #667085;
    --wiki-surface: #ffffff;
    --wiki-background: #f6f7fa;
    width: 100%;
    min-width: 0;
    color: #1d2939;
    background: var(--wiki-background);
    padding: clamp(0.75rem, 1.4vw, 1.35rem);
    box-sizing: border-box;
}

.wiki-page.embedded {
    min-height: calc(100dvh - 15rem);
}

.wiki-page button,
.wiki-page input,
.wiki-page select,
.wiki-page textarea {
    font: inherit;
}

.wiki-header,
.wiki-toolbar,
.wiki-message,
.wiki-workspace {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.wiki-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.wiki-header h1 {
    margin: 0.15rem 0 0;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.15;
}

.wiki-header p,
.wiki-article-header p {
    margin: 0.3rem 0 0;
    color: var(--wiki-muted);
}

.wiki-eyebrow {
    color: var(--wiki-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wiki-header-actions,
.wiki-article-actions,
.wiki-editor-toolbar > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.wiki-button,
.wiki-icon-button,
.wiki-link-button {
    border: 1px solid #cfd5df;
    border-radius: 0.45rem;
    background: #fff;
    color: #344054;
    cursor: pointer;
    font-weight: 650;
}

.wiki-button {
    min-height: 2.2rem;
    padding: 0.42rem 0.75rem;
}

.wiki-button:hover:not(:disabled),
.wiki-icon-button:hover:not(:disabled) {
    border-color: #9e77ed;
    color: var(--wiki-accent);
}

.wiki-button.primary {
    border-color: var(--wiki-accent);
    background: var(--wiki-accent);
    color: #fff;
}

.wiki-button:disabled,
.wiki-icon-button:disabled,
.wiki-link-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.wiki-link-button {
    border: 0;
    padding: 0.2rem;
    background: transparent;
    color: var(--wiki-accent);
}

.wiki-icon-button {
    width: 2rem;
    height: 2rem;
    padding: 0;
    flex: 0 0 auto;
}

.wiki-toolbar {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--wiki-border);
    border-radius: 0.7rem;
    background: var(--wiki-surface);
    margin-bottom: 0.85rem;
}

.wiki-toolbar label {
    display: grid;
    gap: 0.25rem;
}

.wiki-toolbar label > span,
.wiki-editor label > span,
.wiki-ai-field > span,
.wiki-upload > span {
    color: #475467;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wiki-search {
    flex: 1 1 30rem;
}

.wiki-search > div {
    display: flex;
}

.wiki-search input {
    flex: 1;
    border-radius: 0.45rem 0 0 0.45rem;
}

.wiki-search .wiki-button {
    border-left: 0;
    border-radius: 0 0.45rem 0.45rem 0;
}

.wiki-page input,
.wiki-page select,
.wiki-page textarea {
    min-width: 0;
    border: 1px solid #cfd5df;
    border-radius: 0.45rem;
    background: #fff;
    color: #1d2939;
    padding: 0.48rem 0.6rem;
    box-sizing: border-box;
}

.wiki-page input:focus,
.wiki-page select:focus,
.wiki-page textarea:focus {
    border-color: #9e77ed;
    outline: 3px solid rgba(158, 119, 237, 0.16);
}

.wiki-message {
    padding: 0.65rem 0.85rem;
    border: 1px solid #abefc6;
    border-radius: 0.55rem;
    background: #ecfdf3;
    color: #067647;
    margin-bottom: 0.85rem;
}

.wiki-message.error {
    border-color: #fecdca;
    background: #fef3f2;
    color: #b42318;
}
.wiki-message.warning {
    background: #fff8e6;
    border-color: #e7c96d;
    color: #725207;
}

.wiki-state {
    padding: 2rem;
    border: 1px dashed #cfd5df;
    border-radius: 0.75rem;
    background: #fff;
    text-align: center;
    color: var(--wiki-muted);
}

.wiki-workspace {
    display: grid;
    grid-template-columns: minmax(15rem, 21rem) minmax(0, 1fr);
    min-height: clamp(36rem, calc(100dvh - 17rem), 72rem);
    overflow: hidden;
    border: 1px solid var(--wiki-border);
    border-radius: 0.8rem;
    background: var(--wiki-surface);
    box-shadow: 0 0.25rem 1rem rgba(16, 24, 40, 0.05);
}

.wiki-sidebar {
    min-width: 0;
    overflow: auto;
    border-right: 1px solid var(--wiki-border);
    background: #fbfbfd;
}

.wiki-sidebar-heading {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 3.15rem;
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid var(--wiki-border);
    background: rgba(251, 251, 253, 0.96);
}

.wiki-create-panel {
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--wiki-border);
    background: var(--wiki-accent-soft);
}

.wiki-create-panel > div {
    display: flex;
    gap: 0.4rem;
}

.wiki-tree {
    padding: 0.45rem;
}

.wiki-tree-item {
    --indent: calc(var(--wiki-depth) * 1rem);
    display: grid;
    grid-template-columns: 0.85rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.3rem;
    width: calc(100% - var(--indent));
    min-height: 2.25rem;
    margin-left: var(--indent);
    padding: 0.35rem 0.5rem;
    border: 0;
    border-radius: 0.42rem;
    background: transparent;
    color: #344054;
    text-align: left;
    cursor: pointer;
}

.wiki-tree-item:hover {
    background: #f2f4f7;
}

.wiki-tree-item.selected {
    background: var(--wiki-accent-soft);
    color: #53389e;
    font-weight: 750;
}

.wiki-tree-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wiki-tree-branch {
    color: #98a2b3;
    text-align: center;
}

.wiki-state-dot {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #f79009;
}

.wiki-state-dot.archived {
    background: #98a2b3;
}

.wiki-content {
    min-width: 0;
    overflow: auto;
    background: #fff;
}

.wiki-welcome {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 30rem;
    padding: 2rem;
    text-align: center;
}

.wiki-welcome h2 {
    margin: 0.75rem 0 0.25rem;
}

.wiki-welcome p,
.wiki-empty {
    color: var(--wiki-muted);
}

.wiki-welcome-icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--wiki-accent-soft);
    color: var(--wiki-accent);
    font-size: 1.6rem;
    font-weight: 900;
}

.wiki-article,
.wiki-editor {
    width: min(100%, 76rem);
    margin: 0 auto;
    padding: clamp(1rem, 2.4vw, 2.5rem);
    box-sizing: border-box;
}

.wiki-article-header,
.wiki-editor-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--wiki-border);
}

.wiki-article-header h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
    line-height: 1.18;
}

.wiki-article-key {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--wiki-accent);
    font-weight: 800;
}

.wiki-status {
    border-radius: 999px;
    background: #fff4e5;
    color: #b54708;
    padding: 0.15rem 0.48rem;
    font-size: 0.72rem;
}

.wiki-status.published {
    background: #dcfae6;
    color: #067647;
}

.wiki-status.archived {
    background: #f2f4f7;
    color: #667085;
}

.wiki-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.75rem 0;
}

.wiki-tag-list span,
.wiki-reference {
    border-radius: 0.3rem;
    background: #f2f4f7;
    color: #475467;
    padding: 0.15rem 0.4rem;
    font-size: 0.82rem;
}

.wiki-rendered-content {
    min-height: 12rem;
    padding: 1.4rem 0 2rem;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.wiki-rendered-content h1,
.wiki-rendered-content h2,
.wiki-rendered-content h3,
.wiki-rendered-content h4 {
    margin: 1.5em 0 0.45em;
    line-height: 1.25;
}

.wiki-rendered-content h1:first-child,
.wiki-rendered-content h2:first-child,
.wiki-rendered-content h3:first-child {
    margin-top: 0;
}

.wiki-rendered-content pre {
    overflow: auto;
    padding: 0.9rem;
    border-radius: 0.5rem;
    background: #101828;
    color: #f9fafb;
}

.wiki-rendered-content code {
    border-radius: 0.25rem;
    background: #f2f4f7;
    padding: 0.08rem 0.3rem;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.wiki-rendered-content pre code {
    background: transparent;
    padding: 0;
}

.wiki-rendered-content blockquote {
    margin-left: 0;
    padding-left: 1rem;
    border-left: 0.25rem solid #b692f6;
    color: #475467;
}

.wiki-rendered-content a {
    color: var(--wiki-accent);
}

.wiki-empty-content {
    color: var(--wiki-muted);
    font-style: italic;
}

.wiki-history {
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid #d6bbfb;
    border-radius: 0.6rem;
    background: #f9f5ff;
}

.wiki-history h3,
.wiki-panel h3,
.wiki-comments h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.wiki-history-row,
.wiki-related-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-top: 1px solid rgba(152, 162, 179, 0.25);
}

.wiki-history-row:first-of-type {
    border-top: 0;
}

.wiki-history-row > div {
    display: grid;
}

.wiki-history-row span,
.wiki-history-row small {
    color: var(--wiki-muted);
}

.wiki-related {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem 0;
    border-top: 1px solid var(--wiki-border);
}

.wiki-panel {
    min-width: 0;
    padding: 0.9rem;
    border: 1px solid var(--wiki-border);
    border-radius: 0.6rem;
    background: #fcfcfd;
}

.wiki-issue-link,
.wiki-attachment {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #344054;
    text-align: left;
    cursor: pointer;
}

.wiki-issue-link {
    flex: 1;
}

.wiki-issue-link span,
.wiki-attachment strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wiki-issue-link strong {
    color: var(--wiki-accent);
}

.wiki-issue-link small,
.wiki-attachment small {
    color: var(--wiki-muted);
}

.wiki-attachment {
    width: 100%;
    padding: 0.45rem 0;
}

.wiki-inline-form {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.65rem;
}

.wiki-inline-form select {
    flex: 1;
}

.wiki-upload {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.65rem;
}

.wiki-comments {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--wiki-border);
}

.wiki-comment {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eaecf0;
}

.wiki-avatar {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #e9d7fe;
    color: #6941c6;
    font-size: 0.72rem;
    font-weight: 800;
}

.wiki-avatar > img {
    border-radius: inherit;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.wiki-comment-header {
    align-items: baseline;
    display: flex;
    gap: 0.45rem;
}

.wiki-comment-header small {
    color: var(--wiki-muted);
}

.wiki-comment-header button {
    background: transparent;
    border: 0;
    border-radius: 0.3rem;
    color: var(--wiki-muted);
    cursor: pointer;
    line-height: 1;
    margin-left: auto;
    padding: 0.18rem 0.3rem;
}

.wiki-comment-header button:hover,
.wiki-comment-header button:focus-visible {
    background: color-mix(in srgb, #e05252 12%, transparent);
    color: #bd3434;
}

.wiki-comment p {
    margin: 0.3rem 0 0;
    white-space: pre-wrap;
}

.wiki-comment-form {
    display: grid;
    justify-items: end;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.wiki-comment-form textarea {
    width: 100%;
    resize: vertical;
}

.wiki-comment-form > .xaf-ai-text-editor {
    justify-self: stretch;
    width: 100%;
}

.wiki-editor {
    display: grid;
    gap: 0.85rem;
}

.wiki-editor > label,
.wiki-editor-row > label,
.wiki-ai-field,
.wiki-content-editor {
    display: grid;
    gap: 0.3rem;
}

.wiki-editor-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(10rem, 0.6fr);
    gap: 0.75rem;
}

.wiki-content-editor textarea {
    width: 100%;
    min-height: 24rem;
    resize: vertical;
    line-height: 1.5;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.wiki-tags-editor {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    border: 1px solid var(--wiki-border);
    border-radius: 0.5rem;
}

.wiki-tags-editor label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.wiki-markdown-help {
    margin: -0.45rem 0 0;
    color: var(--wiki-muted);
    font-size: 0.82rem;
}

@media (max-width: 850px) {
    .wiki-workspace {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .wiki-sidebar {
        max-height: 18rem;
        border-right: 0;
        border-bottom: 1px solid var(--wiki-border);
    }

    .wiki-header,
    .wiki-article-header,
    .wiki-editor-toolbar {
        flex-direction: column;
    }

    .wiki-related,
    .wiki-editor-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .wiki-page {
        padding: 0.5rem;
    }

    .wiki-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .wiki-search > div,
    .wiki-inline-form {
        flex-direction: column;
    }

    .wiki-search input,
    .wiki-search .wiki-button {
        border: 1px solid #cfd5df;
        border-radius: 0.45rem;
    }

    .wiki-article,
    .wiki-editor {
        padding: 1rem;
    }
}

/* DevExpress Fluent Mint light mode --------------------------------------- */
body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-page {
    --wiki-accent: #176b5d;
    --wiki-accent-soft: #ccefe3;
    --wiki-border: #b7d8cc;
    --wiki-muted: #52736b;
    --wiki-surface: #eef9f5;
    --wiki-background: #edf9f4;
    color: #13352f;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) :is(
    .wiki-button,
    .wiki-icon-button,
    .wiki-state
) {
    background: #e3f4ed;
    border-color: var(--wiki-border);
    color: #13352f;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) :is(
    .wiki-page input,
    .wiki-page select,
    .wiki-page textarea
) {
    background: #f5fbf8;
    border-color: #92c5b5;
    color: #13352f;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-workspace {
    border-color: #b7d8cc;
    box-shadow: 0 .25rem .85rem rgba(19, 53, 47, .1);
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) :is(
    .wiki-sidebar,
    .wiki-sidebar-heading
) {
    background: #e3f4ed;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-sidebar-heading {
    border-bottom-color: #b7d8cc;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-tree-item {
    color: #294f47;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-tree-item:hover {
    background: #d9eee6;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-tree-item.selected {
    background: var(--wiki-accent-soft);
    color: #0d443b;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-content {
    background: #eef9f5;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) :is(
    .wiki-status.archived,
    .wiki-tag-list span,
    .wiki-reference,
    .wiki-rendered-content code
) {
    background: #d9eee6;
    color: #385e55;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-rendered-content pre {
    background: #e3f4ed;
    border-color: #b7d8cc;
    color: #13352f;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-history {
    background: #e7f2ee;
    border-color: #a9d2c5;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) :is(
    .wiki-history-row,
    .wiki-related-row,
    .wiki-comment
) {
    border-color: #b7d8cc;
}

body.dxbl-theme-fluent:not(.dxbl-theme-dark):not(.dxbl-theme-fluent-mode-dark) .wiki-panel {
    background: #e3f4ed;
    border-color: var(--wiki-border);
}

/* DevExpress Fluent dark mode --------------------------------------------- */
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-page {
    --wiki-accent: #c4b5fd;
    --wiki-accent-soft: #302947;
    --wiki-border: #3b4a58;
    --wiki-muted: #a9b7c4;
    --wiki-surface: #18242e;
    --wiki-background: #101820;
    color: #edf4f1;
    color-scheme: dark;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-button,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-icon-button,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-state {
    background: #1b2732;
    border-color: var(--wiki-border);
    color: #e2ebe7;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-page input,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-page select,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-page textarea {
    background: #111c25;
    border-color: #4a5a68;
    color: #edf4f1;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-toolbar label > span,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-editor label > span,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-ai-field > span,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-upload > span {
    color: #b8c4ce;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-message {
    background: #123b30;
    border-color: #2d745d;
    color: #a7f3d0;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-message.error {
    background: #442027;
    border-color: #8d3d49;
    color: #fecaca;
}
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-message.warning {
    background: #2b291e;
    border-color: #74663c;
    color: #ffe08a;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-workspace {
    box-shadow: 0 .35rem 1.2rem rgba(0, 0, 0, .32);
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-sidebar,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-sidebar-heading {
    background: #15212a;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-sidebar-heading {
    border-bottom-color: var(--wiki-border);
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-tree-item {
    color: #dce5e1;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-tree-item:hover {
    background: #26333f;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-tree-item.selected {
    background: var(--wiki-accent-soft);
    color: #ddd6fe;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-tree-branch {
    color: #8999a6;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-content {
    background: #18242e;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-status {
    background: #493716;
    color: #fbd38d;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-status.published {
    background: #123b30;
    color: #a7f3d0;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-status.archived,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-tag-list span,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-reference,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-rendered-content code {
    background: #2a3743;
    color: #c6d1d9;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-rendered-content pre {
    background: #0b1218;
    border: 1px solid #34434f;
    color: #edf4f1;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-rendered-content pre code {
    background: transparent;
    color: inherit;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-rendered-content blockquote {
    border-left-color: #8f79c9;
    color: #b8c4ce;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-history {
    background: #272238;
    border-color: #625487;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-history-row,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-related-row {
    border-top-color: rgba(169, 183, 196, .24);
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-panel {
    background: #1c2934;
    border-color: var(--wiki-border);
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-issue-link,
:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-attachment {
    color: #dce5e1;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-comment {
    border-bottom-color: #34434f;
}

:is(.dxbl-theme-dark, .dxbl-theme-fluent-mode-dark) .wiki-avatar {
    background: #3c3155;
    color: #ddd6fe;
}
