/* ══════════════════════════════════════
   TOKENS — Light Mode (الألوان الجديدة)
══════════════════════════════════════ */
:root {
    --color-primary: #223147;
    --color-primary-dark: #000b21;
    --color-primary-light: #48576d;
    --accent: #4a74a4;
    --accent-dark: #223147;
    --accent-hover: #3a77b0;

    --navy: #4a74a4; 
    --gold: #4a74a4; 
    --gold-hi: #3a77b0;
    --ember: #c0705a; 
    --azure: #48576d; 
    --jade: #2a7e6e; 

    /* Light Mode surfaces */
    --bg: #f5f8fc;
    --surface: #ffffff;
    --white: #ffffff;

    --border: rgba(74, 116, 164, 0.12);
    --border-m: rgba(74, 116, 164, 0.2);

    --ink-dim: #48576d;
    --ink-faint: #7a9ab5;

    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --sh-sm: 0 2px 10px rgba(34, 49, 71, 0.08);
    --sh-md: 0 6px 24px rgba(34, 49, 71, 0.12);
    --sh-lg: 0 14px 48px rgba(34, 49, 71, 0.16);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    overflow: hidden;
}
body {
    font-family: "PingARLT", "Tajawal", sans-serif;
    background: var(--bg);
    color: var(--color-primary);
}

.el .mv-btn {
    position: absolute;
    top: -11px;
    right: 18px;
    width: 22px;
    height: 22px;
    background: #2a8a7e;
    color: #fff;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(42, 138, 126, 0.4);
    transition: all 0.16s;
    user-select: none;
}
.el.selected .mv-btn {
    display: flex;
}
.el .mv-btn:hover {
    background: #1a6b61;
    transform: scale(1.12);
}
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 700;
    height: 56px;
    background: var(--color-primary-dark);
    border-bottom: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: var(--sh-md);
}
.logo {
    width: 120px;
    display: flex;
    align-items: center;
}
.logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}
.top-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ══════════════════════════════════════
   MODE BAR
══════════════════════════════════════ */
#modebar {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 699;
    height: 44px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    gap: 4px;
    box-shadow: var(--sh-sm);
}
.mode-seg {
    display: flex;
    background: var(--bg);
    border: 1.5px solid var(--border-m);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}
.mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 18px;
    border-radius: 5px;
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--ink-dim);
    transition: all 0.18s var(--ease);
}
.mode-btn:hover {
    color: var(--color-primary);
}
.mode-btn.active {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: var(--sh-sm);
}
.mode-btn.active::after {
    display: none;
}

/* ══════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════ */
#app-shell {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
}

/* ══════════════════════════════════════
   CANVAS ZONE
══════════════════════════════════════ */
#canvas-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    overflow: auto;
    background-image: radial-gradient(circle, rgba(74, 116, 164, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
}
#canvas {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    flex-shrink: 0;
    background: #1a1a2e center/cover no-repeat;
    outline: 3px solid rgba(74, 116, 164, 0.6);
    outline-offset: 4px;
}

/* ══════════════════════════════════════
   DRAGGABLE ELEMENTS
══════════════════════════════════════ */
.el {
    position: absolute;
    cursor: grab;
    user-select: none;
    touch-action: none;
}
.el:active {
    cursor: grabbing;
}
.el.selected::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--accent);
    border-radius: var(--r);
    pointer-events: none;
    animation: sel-pulse 2s infinite;
}
@keyframes sel-pulse {
    0%,
    100% {
        border-color: rgba(74, 116, 164, 0.9);
    }
    50% {
        border-color: rgba(74, 116, 164, 0.3);
    }
}
.el-text {
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    direction: rtl;
    text-align: right;
    padding: 3px 6px;
    white-space: pre-wrap;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    outline: none;
    cursor: inherit;
}
.el-img {
    display: block;
}
.rhandle {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 2.5px solid var(--color-primary-dark);
    border-radius: 3px;
    cursor: se-resize;
    z-index: 5;
    display: none;
    box-shadow: var(--sh-sm);
}
.el.selected .rhandle {
    display: block;
}
.el .del-btn {
    position: absolute;
    top: -11px;
    right: -11px;
    width: 22px;
    height: 22px;
    background: var(--ember);
    color: #fff;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(192, 112, 90, 0.4);
    transition: all 0.16s var(--ease);
}
.el.selected .del-btn {
    display: flex;
}
.el .del-btn:hover {
    background: #a0503d;
    transform: scale(1.12) rotate(5deg);
}

/* ══════════════════════════════════════
   EXPORT BAR
══════════════════════════════════════ */
#export-bar {
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--border-m);
    border-top: 3px solid var(--accent);
    padding: 12px;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#export-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
}
#export-row1 {
    display: flex;
    gap: 8px;
}
#export-row1 .btn {
    flex: 1;
}
#export-row2 {
    display: flex;
    gap: 6px;
}
#export-row2 .btn {
    flex: 1;
    font-size: 12px;
    padding: 7px;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
#sidebar {
    width: 292px;
    flex-shrink: 0;
    background: var(--white);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -4px 0 16px rgba(34, 49, 71, 0.05);
}

/* TABS */
#stabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--color-primary-dark);
    overflow-x: auto;
}
#stabs::-webkit-scrollbar {
    display: none;
}
.stab {
    flex: 1;
    min-width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px 8px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.14s var(--ease);
}
.stab svg {
    width: 14px;
    height: 14px;
}
.stab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.16s var(--ease);
}
.stab:hover {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
}
.stab.on {
    color: #fff;
    background: rgba(74, 116, 164, 0.18);
}
.stab.on::after {
    transform: scaleX(1);
}

/* PANELS */
.spanel {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    gap: 11px;
}
.spanel.on {
    display: flex;
}
.spanel::-webkit-scrollbar {
    width: 3px;
}
.spanel::-webkit-scrollbar-thumb {
    background: var(--border-m);
    border-radius: 3px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: var(--r);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.18s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.4s;
}
.btn:hover::before {
    transform: translateX(100%);
}

.btn-black {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: var(--sh-sm);
}
.btn-black:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--sh-md);
}

.btn-green {
    background: var(--jade);
    color: #fff;
    box-shadow: 0 3px 12px rgba(42, 126, 110, 0.25);
}
.btn-green:hover {
    background: #1f6b5e;
    transform: translateY(-1px);
}

.btn-gray {
    background: var(--surface);
    color: var(--color-primary);
    border: 1.5px solid var(--border-m);
}
.btn-gray:hover {
    background: rgba(74, 116, 164, 0.08);
    border-color: var(--accent);
}

.btn-red {
    background: rgba(192, 112, 90, 0.1);
    color: var(--ember);
    border: 1.5px solid rgba(192, 112, 90, 0.25);
}
.btn-red:hover {
    background: rgba(192, 112, 90, 0.18);
    border-color: var(--ember);
}

.bfull {
    width: 100%;
}

/* ══════════════════════════════════════
   BOX — accent left border
══════════════════════════════════════ */
.box {
    background: var(--surface);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border: 1px solid var(--border);
    border-right: 3px solid var(--accent);
}
.lbl {
    font-size: 10px;
    font-weight: 900;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.sec {
    font-size: 10px;
    font-weight: 800;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ══════════════════════════════════════
   INPUTS
══════════════════════════════════════ */
textarea.tinp,
input[type="text"].tinp {
    width: 100%;
    padding: 8px 10px;
    border-radius: var(--r);
    border: 1.5px solid var(--border-m);
    background: var(--bg);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 13px;
    resize: none;
    outline: none;
    direction: rtl;
    line-height: 1.5;
    color: var(--color-primary);
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
textarea.tinp:focus,
input[type="text"].tinp:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 116, 164, 0.12);
    background: var(--white);
}
select.sinp {
    width: 100%;
    padding: 7px 10px;
    border-radius: var(--r);
    border: 1.5px solid var(--border-m);
    background: var(--white);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    color: var(--color-primary);
    transition: border-color 0.15s;
}
select.sinp:focus {
    border-color: var(--accent);
}

/* ══════════════════════════════════════
   SLIDERS
══════════════════════════════════════ */
.slrow {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slrow span {
    font-size: 11px;
    color: var(--ink-faint);
    white-space: nowrap;
}
.slrow input[type="range"] {
    flex: 1;
    accent-color: var(--accent);
    cursor: pointer;
}
.slval {
    font-size: 11px;
    font-weight: 900;
    color: var(--color-primary);
    min-width: 34px;
    text-align: center;
    background: rgba(74, 116, 164, 0.1);
    border-radius: 4px;
    padding: 1px 5px;
}

/* ══════════════════════════════════════
   BUTTON GROUP
══════════════════════════════════════ */
.bgrp {
    display: flex;
    gap: 3px;
}
.gbtn {
    flex: 1;
    padding: 5px 4px;
    border-radius: var(--r);
    border: 1.5px solid var(--border-m);
    background: var(--white);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.12s var(--ease);
    color: var(--ink-dim);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gbtn:hover {
    border-color: var(--accent);
    color: var(--color-primary);
    background: rgba(74, 116, 164, 0.08);
}
.gbtn.on {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ══════════════════════════════════════
   COLOR SWATCHES
══════════════════════════════════════ */
.cdots {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.cdot {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.12s var(--ease);
    flex-shrink: 0;
}
.cdot:hover,
.cdot.on {
    border-color: var(--color-primary);
    transform: scale(1.18);
    box-shadow: 0 0 0 3px rgba(74, 116, 164, 0.2);
}

/* ══════════════════════════════════════
   CALLIGRAPHY GRID
══════════════════════════════════════ */
.cgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.citem {
    border-radius: 8px;
    border: 1.5px solid var(--border-m);
    cursor: pointer;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.14s var(--ease);
    overflow: hidden;
    padding: 5px;
    background: var(--surface);
}
.citem:hover {
    border-color: var(--accent);
    transform: scale(1.04) translateY(-1px);
    box-shadow: var(--sh-sm);
}
.citem.dk {
    background: #1a1a2e;
}
.citem.lt {
    background: var(--surface);
}
.citem img {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    display: block;
}
.citem img.failed {
    display: none;
}
.citem .clabel {
    font-size: 9px;
    font-weight: 700;
    color: var(--ink-faint);
    text-align: center;
    display: none;
    word-break: break-all;
    padding: 2px;
}
.citem img.failed + .clabel {
    display: block;
}

/* ══════════════════════════════════════
   SHOW MORE
══════════════════════════════════════ */
.showmore {
    width: 100%;
    padding: 8px;
    border-radius: var(--r);
    border: 1.5px dashed var(--border-m);
    background: var(--white);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink-faint);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 4px;
    transition: all 0.13s var(--ease);
}
.showmore:hover {
    border-color: var(--accent);
    color: var(--color-primary);
    background: rgba(74, 116, 164, 0.06);
}
.showmore.vis {
    display: flex;
}

/* ══════════════════════════════════════
   BG GRID
══════════════════════════════════════ */
.bggrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.bgthumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.14s var(--ease);
}
.bgthumb:hover,
.bgthumb.on {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 116, 164, 0.25);
    transform: scale(1.02);
}
.bgthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bgbadge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--accent);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 900;
}

/* ══════════════════════════════════════
   CATEGORY TABS
══════════════════════════════════════ */
.cattabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.catbtn {
    padding: 5px 12px;
    border-radius: 20px;
    border: 1.5px solid var(--border-m);
    background: var(--white);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink-dim);
    transition: all 0.12s var(--ease);
}
.catbtn:hover {
    border-color: var(--accent);
    color: var(--color-primary);
}
.catbtn.on {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ══════════════════════════════════════
   READY TEXT LIST
══════════════════════════════════════ */
.rlist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
}
.rlist::-webkit-scrollbar {
    width: 3px;
}
.ritem {
    padding: 7px 10px;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: right;
    color: var(--color-primary);
    transition: all 0.12s var(--ease);
    border-right: 3px solid transparent;
}
.ritem:hover {
    border-right-color: var(--accent);
    background: rgba(74, 116, 164, 0.06);
}

/* ══════════════════════════════════════
   UPLOAD AREA
══════════════════════════════════════ */
.uarea {
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: 2px dashed var(--border-m);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.16s var(--ease);
    color: var(--ink-faint);
}
.uarea:hover {
    border-color: var(--accent);
    color: var(--color-primary);
    background: rgba(74, 116, 164, 0.05);
    transform: translateY(-1px);
    box-shadow: var(--sh-sm);
}
.uarea svg {
    width: 28px;
    height: 28px;
}
.uarea span {
    font-size: 12px;
    font-weight: 800;
}
.uarea small {
    font-size: 10px;
    color: var(--ink-faint);
}

/* ══════════════════════════════════════
   ALT VIEWS
══════════════════════════════════════ */
.alt-view {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 24px 20px;
    background: var(--bg);
    background-image: radial-gradient(circle, rgba(74, 116, 164, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    display: none;
}
.alt-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .alt-container {
        grid-template-columns: 1fr 1fr;
    }
}

.alt-box {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--sh-sm);
    border: 1.5px solid var(--border);
    border-top: 3px solid var(--accent);
}
.alt-box-title {
    font-size: 10px;
    font-weight: 900;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
}
.preview-window {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--sh-lg);
    flex-shrink: 0;
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.preview-text {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    transform: translateY(-50%);
    font-family: "PingARLT", "Tajawal", sans-serif;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    padding: 0 12px;
    line-height: 1.3;
}

/* ══════════════════════════════════════
   NOTIFICATION
══════════════════════════════════════ */
#notif {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--color-primary-dark);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    transition:
        opacity 0.22s,
        transform 0.22s var(--ease);
    pointer-events: none;
    border-left: 3px solid var(--accent);
    box-shadow: var(--sh-md);
    transform: translateY(8px);
}
#notif.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#editor-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--accent);
    flex-wrap: wrap;
    gap: 10px;
}
#editor-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}
#editor-footer a:hover {
    color: #fff;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-heart {
    color: var(--ember);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
    html,
    body {
        overflow: auto;
    }
    #app-shell {
        position: relative;
        top: 0;
        flex-direction: column;
        margin-top: 100px;
        overflow: visible;
        height: auto;
    }
    #canvas-zone {
        padding: 20px 16px;
        background-size: 18px 18px;
        overflow-x: auto;
        justify-content: flex-start;
        min-height: auto;
    }
    #canvas {
        width: 350px !important;
        margin: 0 auto;
    }
    #export-bar {
        margin: 0 auto;
    }
    #sidebar {
        width: 100% !important;
        height: auto;
        overflow: visible;
        border-left: none;
        border-top: 2px solid var(--accent);
    }
    #editor-footer {
        display: none;
    }
}
