/* ===================================================
   Mafia Wiki Page Editor — Styles
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #151515;
    --bg-tertiary: #1a1a1a;
    --bg-elevated: #222;
    --bg-hover: #2a2a2a;
    --border: #333;
    --border-light: #444;
    --text-primary: #e0e0e0;
    --text-secondary: #999;
    --text-muted: #666;
    --accent: #ff4081;
    --accent-hover: #ff6a9e;
    --accent-dim: rgba(255, 64, 129, 0.15);
    --blue: #4a90e2;
    --blue-hover: #6dabf0;
    --green: #4caf50;
    --red: #ef5350;
    --yellow: #ffb74d;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.5);
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    --topbar-height: 56px;
    --transition: 150ms ease;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
}

/* ---------- Topbar ---------- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-logo {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.topbar h1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 2px 12px rgba(255, 64, 129, 0.3);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

.btn-danger {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}
.btn-danger:hover {
    background: rgba(239, 83, 80, 0.1);
}

/* ---------- Main Layout ---------- */
.main-layout {
    display: flex;
    margin-top: var(--topbar-height);
    height: calc(100vh - var(--topbar-height));
    overflow: hidden;
}

.editor-panel {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 80px;
}

.preview-panel {
    width: 50%;
    min-width: 400px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
}

.preview-panel.hidden {
    display: none;
}

/* ---------- Editor Sections ---------- */
.editor-section {
    margin-bottom: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: none;
    width: 100%;
    text-align: left;
    user-select: none;
}

.section-header.collapsible {
    cursor: pointer;
    transition: background var(--transition);
}
.section-header.collapsible:hover {
    background: var(--bg-tertiary);
}

.section-header .chevron {
    margin-left: auto;
    transition: transform var(--transition);
}

.section-header.collapsed .chevron {
    transform: rotate(-90deg);
}

.section-content {
    padding: 0 18px 18px;
}

.section-content.collapsed {
    display: none;
}

/* ---------- Toggle Switch ---------- */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-left: auto;
    flex-shrink: 0;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: all var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    bottom: 2px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: all var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(18px);
    background: var(--accent);
}

/* ---------- Form Elements ---------- */
.form-group {
    margin-bottom: 14px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.required {
    color: var(--accent);
}

.help-text {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

input[type="text"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 9px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 13px;
    transition: border-color var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

textarea#intro-editor {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.5;
}

/* ---------- Image Upload ---------- */
.image-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.image-upload-area:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--text-secondary);
}

.image-upload-area.dragover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.image-preview {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.image-preview img {
    display: block;
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.btn-remove-image {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.btn-remove-image:hover {
    background: var(--red);
}

/* ---------- Type Fields (role/map/custom) ---------- */
.type-fields[hidden] {
    display: none;
}

/* ---------- Custom Attribute Row ---------- */
.custom-attr-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.custom-attr-row input {
    flex: 1;
}

.custom-attr-row .btn-remove-attr {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
}

.custom-attr-row .btn-remove-attr:hover {
    color: var(--red);
    border-color: var(--red);
    background: rgba(239, 83, 80, 0.1);
}

/* ---------- EasyMDE Overrides ---------- */
.md-editor-wrap {
    border-radius: var(--radius);
    overflow: hidden;
}

.md-editor-wrap .EasyMDEContainer {
    border: none !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
    min-height: 150px;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror-focused {
    border-color: var(--accent) !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .CodeMirror-cursor {
    border-left-color: var(--text-primary) !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .CodeMirror-selected {
    background: rgba(255, 64, 129, 0.2) !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .cm-header {
    color: var(--accent) !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .cm-strong {
    color: #fff !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .cm-link {
    color: var(--blue) !important;
}

.md-editor-wrap .EasyMDEContainer .CodeMirror .cm-url {
    color: var(--text-muted) !important;
}

.md-editor-wrap .editor-toolbar {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border) !important;
    border-bottom: none !important;
    border-radius: var(--radius) var(--radius) 0 0 !important;
    opacity: 1 !important;
    padding: 4px 8px !important;
}

.md-editor-wrap .editor-toolbar button {
    color: var(--text-secondary) !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    width: 30px !important;
    height: 30px !important;
}

.md-editor-wrap .editor-toolbar button:hover {
    background: var(--bg-hover) !important;
    color: var(--text-primary) !important;
}

.md-editor-wrap .editor-toolbar button.active {
    background: var(--accent-dim) !important;
    color: var(--accent) !important;
}

.md-editor-wrap .editor-toolbar i.separator {
    border-left-color: var(--border) !important;
}

.md-editor-wrap .editor-statusbar {
    display: none !important;
}

/* ---------- Add Section Button ---------- */
.btn-add-section {
    width: 100%;
    padding: 12px;
    justify-content: center;
    border-style: dashed;
    margin-bottom: 16px;
}

/* ---------- Custom Section ---------- */
.custom-section {
    position: relative;
}

.custom-section .section-header {
    display: flex;
    align-items: center;
}

.custom-section-title-input {
    background: transparent;
    border: none;
    border-bottom: 1px dashed var(--border-light);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    padding: 2px 4px;
    flex: 1;
    min-width: 0;
}

.custom-section-title-input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.btn-remove-section {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
    margin-left: 8px;
}

.btn-remove-section:hover {
    color: var(--red);
    border-color: var(--red);
    background: rgba(239, 83, 80, 0.1);
}

/* ---------- Preview Panel ---------- */
.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.preview-header h2 {
    font-size: 14px;
    font-weight: 600;
}

.preview-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    padding: 3px;
}

.preview-tab {
    padding: 5px 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.preview-tab.active {
    background: var(--bg-elevated);
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.preview-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Visual Preview (wiki-styled) */
.preview-visual {
    height: 100%;
}

.preview-wiki-page {
    padding: 24px;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    color: #e0e0e0;
    min-height: 100%;
}

.preview-wiki-page h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.preview-wiki-page hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0 16px;
}

.preview-wiki-page h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 4px;
}

.preview-wiki-page p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.preview-wiki-page a {
    color: var(--blue);
}

.preview-wiki-page img {
    max-width: 100%;
    border-radius: var(--radius);
}

.preview-wiki-page .flex-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.preview-wiki-page .infobox {
    flex: 0 0 200px;
}

.preview-wiki-page .infobox table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 13px;
}

.preview-wiki-page .infobox td,
.preview-wiki-page .infobox th {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.preview-wiki-page .infobox th {
    color: var(--text-secondary);
    font-weight: 600;
    width: 50%;
}

.preview-wiki-page .infobox .infobox-image {
    width: 100%;
    border-radius: 0;
}

.preview-placeholder {
    color: var(--text-muted);
    text-align: center;
    padding: 60px 20px;
    font-style: italic;
}

/* Source Preview */
.preview-source {
    height: 100%;
}

.preview-source pre {
    margin: 0;
    padding: 18px;
    background: var(--bg-primary);
    min-height: 100%;
    overflow-x: auto;
}

.preview-source code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ---------- Insert Image Button ---------- */
.btn-insert-image {
    margin-top: 8px;
}

.section-images input[type="file"] {
    display: none;
}

/* ---------- Toast Notifications ---------- */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: toast-in 300ms ease forwards;
    max-width: 360px;
}

.toast.success {
    background: var(--green);
    color: #fff;
}

.toast.error {
    background: var(--red);
    color: #fff;
}

.toast.info {
    background: var(--blue);
    color: #fff;
}

.toast.fade-out {
    animation: toast-out 300ms ease forwards;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .preview-panel {
        display: none;
    }

    .preview-panel.mobile-show {
        display: flex;
        position: fixed;
        top: var(--topbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 50;
    }

    .editor-panel {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .topbar h1 {
        font-size: 14px;
    }
}

/* ---------- Admonition Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 420px;
    max-width: 90vw;
    box-shadow: var(--shadow-lg);
    animation: modal-in 200ms ease forwards;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
}

.modal-body .form-group {
    margin-bottom: 14px;
}

.modal-body label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    cursor: pointer;
}

.modal-body input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

/* ---------- Admonition Preview Styles ---------- */
.preview-wiki-page .admonition {
    border-left: 4px solid;
    border-radius: var(--radius);
    margin: 16px 0;
    overflow: hidden;
    font-size: 13px;
}

.preview-wiki-page .admonition-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
}

.preview-wiki-page .admonition-icon {
    flex-shrink: 0;
    font-size: 15px;
}

.preview-wiki-page .admonition-body {
    padding: 4px 14px 12px;
}

.preview-wiki-page .admonition-body p {
    margin-bottom: 8px;
}

.preview-wiki-page .admonition-body p:last-child {
    margin-bottom: 0;
}

/* Collapsible admonitions (details/summary) */
.preview-wiki-page details.admonition {
    cursor: default;
}

.preview-wiki-page details.admonition > summary {
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.preview-wiki-page details.admonition > summary::before {
    content: '\25B6';
    font-size: 10px;
    margin-right: 6px;
    transition: transform 200ms ease;
    display: inline-block;
}

.preview-wiki-page details[open].admonition > summary::before {
    transform: rotate(90deg);
}

.preview-wiki-page details.admonition > summary::-webkit-details-marker {
    display: none;
}

/* --- Admonition colour variants --- */
/* Note (blue-grey) */
.admonition-note {
    border-color: #448aff;
    background: rgba(68, 138, 255, 0.08);
}
.admonition-note .admonition-title { color: #448aff; background: rgba(68, 138, 255, 0.12); }

/* Abstract (light blue) */
.admonition-abstract {
    border-color: #00b0ff;
    background: rgba(0, 176, 255, 0.08);
}
.admonition-abstract .admonition-title { color: #00b0ff; background: rgba(0, 176, 255, 0.12); }

/* Info (cyan) */
.admonition-info {
    border-color: #00b8d4;
    background: rgba(0, 184, 212, 0.08);
}
.admonition-info .admonition-title { color: #00b8d4; background: rgba(0, 184, 212, 0.12); }

/* Tip (teal) */
.admonition-tip {
    border-color: #00bfa5;
    background: rgba(0, 191, 165, 0.08);
}
.admonition-tip .admonition-title { color: #00bfa5; background: rgba(0, 191, 165, 0.12); }

/* Success (green) */
.admonition-success {
    border-color: #00c853;
    background: rgba(0, 200, 83, 0.08);
}
.admonition-success .admonition-title { color: #00c853; background: rgba(0, 200, 83, 0.12); }

/* Question (light green) */
.admonition-question {
    border-color: #64dd17;
    background: rgba(100, 221, 23, 0.08);
}
.admonition-question .admonition-title { color: #64dd17; background: rgba(100, 221, 23, 0.12); }

/* Warning (orange) */
.admonition-warning {
    border-color: #ff9100;
    background: rgba(255, 145, 0, 0.08);
}
.admonition-warning .admonition-title { color: #ff9100; background: rgba(255, 145, 0, 0.12); }

/* Failure (red-orange) */
.admonition-failure {
    border-color: #ff5252;
    background: rgba(255, 82, 82, 0.08);
}
.admonition-failure .admonition-title { color: #ff5252; background: rgba(255, 82, 82, 0.12); }

/* Danger (red) */
.admonition-danger {
    border-color: #ff1744;
    background: rgba(255, 23, 68, 0.08);
}
.admonition-danger .admonition-title { color: #ff1744; background: rgba(255, 23, 68, 0.12); }

/* Bug (pink) */
.admonition-bug {
    border-color: #f50057;
    background: rgba(245, 0, 87, 0.08);
}
.admonition-bug .admonition-title { color: #f50057; background: rgba(245, 0, 87, 0.12); }

/* Example (purple) */
.admonition-example {
    border-color: #7c4dff;
    background: rgba(124, 77, 255, 0.08);
}
.admonition-example .admonition-title { color: #7c4dff; background: rgba(124, 77, 255, 0.12); }

/* Quote (grey) */
.admonition-quote {
    border-color: #9e9e9e;
    background: rgba(158, 158, 158, 0.08);
}
.admonition-quote .admonition-title { color: #9e9e9e; background: rgba(158, 158, 158, 0.12); }
