.image-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-block: 10px;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #555;
}

.image-wrapper .btn-remove {
    position: absolute;
    right: 4px;
    top: 4px;
    padding: 4px 6px;
    font-size: 12px;
    cursor: pointer;
}

/* Ergänzt das create_product.css für die Edit-Seite */

.ep-selector select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: var(--input-bg, rgba(255, 255, 255, .08));
    color: inherit;
    border: 1px solid #3a4153;
    font-size: 1rem;
}

/* Thumbs übernehmen Styles aus create_product.css (.cp-thumbs / .cp-thumb) */
/* Kleines Badge, wenn Bild „alt“ (aus DB) ist */
.cp-thumb[data-origin="existing"]::after {
    content: "Vorhanden";
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: .72rem;
    background: #0009;
    color: #fff;
    padding: .15rem .35rem;
    border-radius: 6px;
}

/* Entfernen-Button (already from create css: .cp-del) – hier etwas enger */
.cp-thumb .cp-del {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
}

/* ---- Message Bubble unter dem Save-Button ---- */
.cp-message {
    min-height: 1.75rem;
    margin-left: auto;
    font-size: .95rem;
    line-height: 1.4;
    padding: .4rem .6rem;
    border-radius: .5rem;
    transition: opacity .2s ease, transform .2s ease, background-color .2s ease, color .2s ease;
    opacity: .95;
    transform: translateY(0);
}

.cp-message:empty {
    padding: 0;
    min-height: 0;
    opacity: 0;
    transform: translateY(-4px);
}

/* Farbcodes – nutz deine Theme-Variablen wenn vorhanden */
:root {
    --accent: #f7b500;
    /* deine Akzentfarbe */
    --ok-bg: #16321f;
    --ok-fg: #9de2b3;
    --err-bg: #3a1a1d;
    --err-fg: #f2a2ab;
    --muted: #9aa3ad;
}

/* Typen */
.cp-message.ok {
    background: var(--ok-bg);
    color: var(--ok-fg);
    border: 1px solid rgba(157, 226, 179, .25);
}

.cp-message.error {
    background: var(--err-bg);
    color: var(--err-fg);
    border: 1px solid rgba(242, 162, 171, .25);
}

/* Optional: neutrale Info */
.cp-message.info {
    color: var(--muted);
}

/* Toolbar-Layout */
#cropper-overlay .cropper-toolbar {
    display: flex;
    gap: .5rem;
    align-items: center;
    padding: .5rem .75rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(0, 0, 0, .2);
}

#cropper-overlay .cropper-toolbar .spacer {
    flex: 1;
}

/* Buttons */
#cropper-overlay .cropper-toolbar button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #e8edf3;
    padding: .5rem .75rem;
    border-radius: .6rem;
    font-size: .95rem;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, transform .03s ease;
}

#cropper-overlay .cropper-toolbar button:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18);
}

#cropper-overlay .cropper-toolbar button:active {
    transform: translateY(1px);
}

/* Primär-Action = Akzent */
#cropper-overlay .cropper-toolbar .primary {
    background: var(--accent);
    color: #111;
    border-color: transparent;
}

#cropper-overlay .cropper-toolbar .primary:hover {
    filter: brightness(1.05);
}

/* Hauptüberschrift */
h2[data-translate="ep_headline"] {
    color: var(--accent);
}

/* Karten-Titel / Label der Auswahl */
.cp-card.ep-selector>label>span,
.cp-card legend {
    /* optional: alle Fieldset-Legenden */
    color: var(--accent);
}

/* ==== Edit Products: Select-Felder fixen ==== */
.ep-selector select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: none !important;
    /* kill global arrow */
    text-indent: 0.01px;
    /* Safari-Fix */
    text-overflow: '';
    /* Safari-Fix */
    padding-right: 38px;
    /* Platz für Pfeil rechts */
    position: relative;
}

/* Optional: eigener Pfeil */
.ep-selector {
    position: relative;
}

.ep-selector::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: .7;
    font-size: 14px;
}

/* Light/Dark Mode Farbanpassung */
body.light-mode .ep-selector::after {
    color: #333;
}

body.dark-mode .ep-selector::after {
    color: #ddd;
}

/* =========================
   Edit-Products – Farb-Fixes
   ========================= */

/* 1) Einheitliche Felder: Beschreibungen, Preis, Zubehör
      (Dark & Light) */
#productForm textarea[name="description"],
#productForm textarea[name="description_en"],
#productForm input[name="price"],
#productForm input[name="accessories"],
#productForm textarea[name="accessories"] {
    background: var(--ord-input-bg, rgba(255, 255, 255, .03));
    border: 1px solid var(--ord-input-border, #2a3142);
    color: var(--ord-text, #e6e9ef);
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

/* Fallback, falls Zubehör als „normales“ Textfeld ohne name-Attribut
   angelegt wurde – optional einkommentieren:
#productForm .ctrl input[type="text"] { ... } */

#productForm textarea[name="description"]:focus,
#productForm textarea[name="description_en"]:focus,
#productForm input[name="price"]:focus,
#productForm input[name="accessories"]:focus,
#productForm textarea[name="accessories"]:focus {
    border-color: var(--ord-accent, #f6b100);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--ord-accent, #f6b100) 40%, transparent);
    background: color-mix(in oklab, var(--ord-card, #171a21) 90%, var(--ord-accent, #f6b100) 10%);
}

/* 2) Kopf-Select („Produkt wählen…“) visuell angleichen (Dark & Light) */
#productForm select#productSelector {
    background: var(--ord-input-bg, rgba(255, 255, 255, .03));
    border: 1px solid var(--ord-input-border, #2a3142);
    color: var(--ord-text, #e6e9ef);
    border-radius: 10px;
    height: 38px;
    padding: 0 12px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#productForm select#productSelector:focus {
    border-color: var(--ord-accent, #f6b100);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--ord-accent, #f6b100) 40%, transparent);
}

/* Optional: allgemeine Input/Select/Textarea-Defaults auf der Seite
   harmonisieren, ohne andere Pages zu beeinflussen */
#productForm input[type="text"],
#productForm input[type="number"],
#productForm input[type="url"],
#productForm textarea,
#productForm select {
    background: var(--ord-input-bg, rgba(255, 255, 255, .03));
    border: 1px solid var(--ord-input-border, #2a3142);
    color: var(--ord-text, #e6e9ef);
}

body.light-mode #productForm input[type="text"],
body.light-mode #productForm input[type="number"],
body.light-mode #productForm input[type="url"],
body.light-mode #productForm textarea,
body.light-mode #productForm select {
    background: var(--ord-input-bg, #fff);
    border: 1px solid var(--ord-input-border, #d7dbe4);
    color: var(--ord-text, #0b1220);
}

/* Light-Mode: Produkt-ID Label größer & schwarz */
body.light-mode .ep-selector label span[data-translate="cp_idLabel"] {
    color: #000 !important;
    font-size: 1.2rem !important;
    font-weight: 700;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #1f232a;
    color: #e0e0e0;
}

/* ===== PAGE LAYOUT ===== */
#server-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    background-color: #2b2f36;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* ===== HEADLINE ===== */
#server-container h2 {
    text-align: center;
    color: #ffb12e;
    margin-bottom: 30px;
}

/* ===== FORM ELEMENTS ===== */
label {
    display: block;
    font-weight: bold;
    margin: 20px 0 8px;
}

input[type="text"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background-color: #363b45;
    border: 1px solid #555;
    color: #f0f0f0;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===== SUBMIT BUTTON ===== */
#submit-product-btn {
    width: 100%;
    margin-top: 30px;
    padding: 14px;
    font-size: 16px;
    background-color: #ffb12e;
    color: #1f232a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

#submit-product-btn:hover {
    background-color: #e39d1b;
}

/* ===== FILE PREVIEW ===== */
#image-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

#image-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #555;
}

/* ===== TOGGLE / CHECKBOX STYLE (falls verwendet) ===== */
input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
    vertical-align: middle;
}

.cp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cp-card {
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid #2a3142;
    border-radius: 12px;
    padding: 14px;
}

.cp-card legend {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color, #f9b233);
}

.cp-card label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.cp-card input,
.cp-card textarea {
    background: var(--input-bg, rgba(255, 255, 255, 0.08));
    color: inherit;
    border: 1px solid #3a4153;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 1rem;
}

.cp-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cp-span-2 {
    grid-column: 1 / -1;
}

.cp-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-actions .primary {
    padding: .8rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
}

.cp-message {
    min-height: 1.4em;
    opacity: .9;
}

@media (max-width: 900px) {
    .cp-grid {
        grid-template-columns: 1fr;
    }

    .cp-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Uploader */
.cp-uploader {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-uploader-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cp-uploader-toolbar .btn {
    padding: .55rem .9rem;
    border-radius: 8px;
}

.cp-uploader-hint {
    opacity: .75;
    font-size: .9rem;
}

.cp-uploader-count {
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    opacity: .8;
}

/* Dropzone */
.cp-dropzone {
    border: 1.5px dashed var(--ws-border, #2a3142);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    min-height: 110px;
    display: grid;
    place-items: center;
    transition: border-color .15s, background .15s;
}

.cp-dropzone.dragover {
    border-color: var(--accent-color, #f7b600);
    background: rgba(247, 182, 0, .06);
}

.cp-dropzone-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: .75;
}

.cp-dropzone svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    opacity: .8;
}

/* Thumbs grid */
.cp-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.cp-thumb {
    position: relative;
    border: 1px solid #3336;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.cp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controls */
.cp-thumb .cp-del {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    line-height: 26px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: #0009;
}

.cp-thumb .cp-index {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: .8rem;
    padding: .15rem .4rem;
    border-radius: 6px;
    background: #0009;
    color: #fff;
}

.cp-thumb .cp-cover {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-size: .75rem;
    padding: .15rem .4rem;
    border-radius: 6px;
    background: rgba(247, 182, 0, .9);
    color: #000;
    font-weight: 700;
}

.cp-thumb[draggable="true"] {
    cursor: grab;
}

.cp-thumb.dragghost {
    opacity: .6;
    outline: 2px dashed #888;
}

/* === CROPPER: single source of truth === */

/* Overlay: unsichtbar, wird per JS auf "grid" gestellt */
#cropper-overlay {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
}

/* Dialogbox als Flex-Column: Stage dehnt sich, Footer bleibt sichtbar */
#cropper-box {
    width: min(900px, 92vw);
    max-height: 90vh;
    background: #10141c;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header */
#cropper-box header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .03);
}

/* Stage: wächst, verhindert Browser-Scroll/Gesten */
.cropper-stage {
    flex: 1 1 auto;
    min-height: 240px;
    max-height: 64vh;
    position: relative;
    background: #0b0f17;
    overflow: hidden;
    touch-action: none;
    /* <<< wichtig für Mobile */
    -ms-touch-action: none;
    /* IE/legacy */
    overscroll-behavior: contain;
    user-select: none;
}

/* Canvas füllt die Stage, auch hier Gesten blocken */
#cropper-canvas {
    width: 100%;
    height: 100%;
    display: block;
    touch-action: none;
    /* <<< wichtig */
}

/* Maske + Quadrat */
.cropper-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cropper-square {
    position: absolute;
    border: 2px dashed #ffbf2a;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .55) inset;
    border-radius: 2px;
}

/* Footer bleibt IM Dialog und sichtbar */
.cropper-footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid rgba(255, 255, 255, .07);
}

/* Zoom-Gruppe links, Aktionen rechts */
.cropper-zoom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cropper-zoom input[type="range"] {
    width: 220px;
}

.cropper-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.cropper-actions .btn,
.cropper-actions button {
    min-width: 120px;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.cropper-actions .primary {
    background: var(--accent-color, #f6b21a);
    color: #111;
    border-color: transparent;
}

/* Buttons */
.btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: inherit;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background .15s, border-color .15s, transform .04s;
}

.btn:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .26);
}

.btn:active {
    transform: translateY(1px);
}

.btn.primary {
    background: var(--accent-color, #f6b21a);
    color: var(--primary-color, #111);
    border-color: transparent;
}

.btn.primary:hover {
    filter: brightness(.95);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .12);
}

/* Overlay ganz nach vorn und wirklich full-screen */
#cropper-overlay {
    position: fixed;
    inset: 0;
    display: none;
    /* wird per JS auf grid gesetzt */
    place-items: center;
    background: rgba(0, 0, 0, .6);
    z-index: 2147483647;
    /* höher als alles andere */
}

/* Dialog: fast fullscreen, als Flex-Column */
#cropper-box {
    width: min(1100px, 96vw);
    height: min(96vh, 920px);
    /* << deutlich höher */
    background: #10141c;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header bleibt oben */
#cropper-box header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .03);
}

/* Stage füllt den Rest – keine Höhenbegrenzung mehr */
.cropper-stage {
    flex: 1 1 0;
    min-height: 300px;
    /* fallback */
    max-height: none;
    /* << entfernt die alte Bremse */
    position: relative;
    background: #0b0f17;
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
    user-select: none;
    overscroll-behavior: contain;
}

/* Canvas füllt die Stage */
#cropper-canvas {
    width: 100%;
    height: 100%;
    display: block;
    touch-action: none;
}

/* Maske */
.cropper-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cropper-square {
    position: absolute;
    border: 2px dashed #ffbf2a;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .55) inset;
    border-radius: 2px;
}

/* Footer bleibt IM Dialog unten */
.cropper-footer {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.cropper-zoom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cropper-zoom input[type="range"] {
    width: 240px;
}

.cropper-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.cropper-actions button {
    min-width: 120px;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.cropper-actions .primary {
    background: var(--accent-color, #f6b21a);
    color: #111;
    border-color: transparent;
}

/* Mobile: Dialog nutzt volle Breite/Höhe */
@media (max-width: 600px) {
    #cropper-box {
        width: 100vw;
        height: 96vh;
        border-radius: 10px;
    }

    .cropper-zoom input[type="range"] {
        width: 180px;
    }
}

/* Schwebende Aktionen unten rechts im Dialog */
.cropper-cta {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

#cropper-box {
    position: relative;
}

/* damit .cropper-cta relativ zur Box sitzt */

.cropper-cta button {
    min-width: 120px;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.cropper-cta .primary {
    background: var(--accent-color, #f6b21a);
    color: #111;
    border-color: transparent;
}

/* Close-Icon oben rechts im Header */
#cropper-close {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .04s;
}

#cropper-close:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .26);
}

#cropper-close:active {
    transform: translateY(1px);
}

/* ===========================
   Create-Product – Produktbilder (nur Light-Mode)
   =========================== */
body.light-mode .cp-card {
    background: #ffffff;
    border-color: #dfe3ea;
}

body.light-mode .cp-uploader-toolbar .btn {
    background: #eef2f7;
    border: 1px solid #d9e1eb;
    color: #1c2433;
}

body.light-mode .cp-uploader-toolbar .btn:hover {
    background: #e6ecf4;
}

body.light-mode .cp-uploader-hint {
    color: #6b7280;
    /* dezentes Grau */
}

body.light-mode .cp-uploader-count {
    color: #3b4252;
}

/* Dropzone hell + klarer Rahmen */
body.light-mode .cp-dropzone {
    border-color: #d0d7e2;
    background: #fbfcfe;
}

body.light-mode .cp-dropzone.dragover {
    border-color: var(--accent-color, #f7b600);
    background: #fff7e0;
    /* zart gelblich bei Drag */
}

/* Thumbnails: klare Kartenoptik */
body.light-mode .cp-thumbs .cp-thumb {
    background: #ffffff;
    border-color: #e5e9f0;
}

body.light-mode .cp-thumb .cp-del {
    background: rgba(0, 0, 0, .55);
    color: #fff;
}

body.light-mode .cp-thumb .cp-index {
    background: rgba(0, 0, 0, .55);
    color: #fff;
}

/* Light-Mode: Cover-Chip mit weißer Schrift + leicht abgedunkeltem Gelb */
body.light-mode .cp-thumb .cp-cover {
    background: color-mix(in oklab, var(--accent-color, #f7b600) 82%, #000 18%);
    color: #fff !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
    border: 1px solid rgba(0, 0, 0, .12);
}

/* Dropzone-Icon/Text etwas dunkler, aber nicht zu kräftig */
body.light-mode .cp-dropzone-inner {
    color: #7b8496;
}

body.light-mode .cp-dropzone svg {
    color: #7b8496;
}

/* Scrollbar in der Thumbs-Liste dezent hell */
body.light-mode .cp-thumbs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .18);
}

/* Titel "Produktverwaltung" in Akzentfarbe */
h2[data-translate="cp_pageTitle"] {
    color: var(--accent-color, var(--accent, #f6b100));
}