/* Event Order — design system */
:root {
  --bg: #eef1f5;
  --surface: #ffffff;
  --ink: #14181f;
  --muted: #5c6678;
  --faint: #8b95a7;
  --line: #e2e8f0;
  --accent: #0f4c5c;
  --accent-hi: #14657a;
  --accent-soft: #e3eef2;
  --gold: #c8963e;
  --danger: #b3261e;
  --danger-soft: #fdecea;
  --ok: #1b7f4b;
  --ok-soft: #e5f4ec;
  --warn: #92600a;
  --warn-soft: #fdf3e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 14px rgba(16, 24, 40, .06);
  --shadow-lg: 0 16px 40px rgba(16, 24, 40, .14), 0 4px 12px rgba(16, 24, 40, .06);
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-hi); text-decoration: none; transition: color .12s; }
a:hover { text-decoration: underline; color: var(--accent); }

/* ---------- layout (sidebar colors are brandable via CSS vars) ---------- */
#app { display: flex; min-height: 100vh; }
.sidebar {
  width: 228px; flex-shrink: 0; background: var(--side-bg, #ffffff); color: var(--side-ink, #374151);
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
  border-right: 1px solid var(--side-border, #e5e7eb);
  box-shadow: 2px 0 24px rgba(16, 24, 40, .04);
}
.sidebar .brand {
  padding: 22px 18px 16px; font-size: 20px; font-weight: 800; letter-spacing: -.02em;
  color: var(--side-brand, var(--accent));
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.sidebar .brand img { max-width: 160px; max-height: 52px; display: block; margin: 0 auto 8px; border-radius: 6px; }
.sidebar .brand small { display: block; font-size: 10px; font-weight: 600; color: var(--side-muted, #8b94a0);
  text-transform: uppercase; letter-spacing: 1.1px; margin-top: 2px; width: 100%; text-align: center; }
.sidebar nav { flex: 1; padding: 8px 12px; overflow-y: auto; }
.sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; margin: 2px 0;
  border-radius: var(--radius-sm); color: var(--side-ink, #374151); font-weight: 600;
  text-decoration: none; font-size: 13.5px; transition: background .12s, color .12s, box-shadow .12s;
}
.sidebar nav a span:first-child { width: 20px; text-align: center; font-size: 15px; opacity: .88; flex-shrink: 0; }
.sidebar nav a:hover { background: var(--side-hover, #f3f4f6); text-decoration: none; }
.sidebar nav a.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent) 38%, transparent);
}
.sidebar nav a.active span:first-child { opacity: 1; }
.sidebar nav .sep { margin: 14px 12px 6px; font-size: 10px; text-transform: uppercase;
  letter-spacing: 1.1px; color: var(--side-muted, #8b94a0); font-weight: 700; }
.sidebar .foot { padding: 14px 20px; font-size: 12px; color: var(--side-muted, #8b94a0);
  border-top: 1px solid var(--side-border, #e5e7eb); line-height: 1.5; }
.sidebar .foot a { color: var(--accent-hi); cursor: pointer; font-weight: 600; }
.main {
  flex: 1; padding: 28px 36px 64px; max-width: 1240px; min-width: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, color-mix(in srgb, var(--accent) 7%, transparent), transparent),
    var(--bg);
}

.page-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 { font-size: 26px; margin: 0; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.page-head .sub { color: var(--muted); font-size: 13.5px; margin-top: 4px; font-weight: 500; }
.crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--accent-hi); }

/* ---------- cards, tables ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px; margin-bottom: 18px;
  transition: box-shadow .15s, border-color .15s;
}
.card h2 {
  font-size: 15px; margin: 0 0 14px; letter-spacing: -.01em;
  color: var(--ink); font-weight: 700; display: flex; justify-content: space-between; align-items: center;
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .grid2, .grid3 { grid-template-columns: 1fr; } }

table.list { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.list th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .6px;
  color: var(--faint); padding: 8px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
table.list td { padding: 11px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.list tr.rowlink { cursor: pointer; transition: background .1s; }
table.list tr.rowlink:hover td { background: color-mix(in srgb, var(--accent) 4%, #fff); }
table.list tr.rowlink:last-child td { border-bottom: 0; }
table.list .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
table.list th.num { text-align: right; }
table.list th.sortable-th { cursor: pointer; user-select: none; transition: color .12s; }
table.list th.sortable-th:hover { color: var(--ink); }
table.list th.sortable-th .sort-mark { margin-left: 5px; font-size: 9px; opacity: .55; letter-spacing: 0; }
table.list th.sortable-th:not(:hover) .sort-mark { opacity: .4; }

.empty { text-align: center; color: var(--muted); padding: 36px 14px; font-size: 14px; line-height: 1.5; }
.empty .big { font-size: 32px; margin-bottom: 8px; opacity: .85; }

/* ---------- forms ---------- */
label.f { display: block; margin-bottom: 14px; font-size: 12.5px; font-weight: 600; color: #374151; }
label.f > span { display: block; margin-bottom: 5px; }
label.f > span .opt { color: var(--faint); font-weight: 500; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=date],
input[type=time], input[type=url], select, textarea {
  width: 100%; padding: 9px 12px; border: 1px solid #d1d9e3; border-radius: var(--radius-sm);
  font: inherit; font-size: 13.5px; color: var(--ink); background: #fff;
  transition: border-color .12s, box-shadow .12s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent-hi);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
textarea { resize: vertical; min-height: 74px; }
.frow { display: flex; gap: 12px; } .frow > * { flex: 1; }
.check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--accent-hi); cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius-sm);
  border: 1px solid transparent; font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; background: var(--accent); color: #fff; white-space: nowrap;
  transition: background .12s, box-shadow .12s, transform .08s, border-color .12s;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 2px 8px color-mix(in srgb, var(--accent) 22%, transparent);
}
.btn:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: #fff; color: var(--ink); border-color: #d1d9e3;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}
.btn.secondary:hover { background: #f8fafc; border-color: #c5ced9; }
.btn.ghost { background: transparent; color: var(--accent-hi); border: 0; padding: 6px 10px; box-shadow: none; }
.btn.ghost:hover { background: var(--accent-soft); transform: none; }
.btn.danger { background: #fff; color: var(--danger); border-color: #ecc8c5; box-shadow: none; }
.btn.danger:hover { background: var(--danger-soft); transform: none; }
.btn.sm { padding: 6px 11px; font-size: 12px; }
.btn.icon { padding: 5px 8px; }
.btn:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }

/* ---------- badges & pills ---------- */
.pill {
  display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-weight: 700;
  background: #eef1f4; color: #4b5563; text-transform: capitalize; letter-spacing: .01em;
}
.pill.draft { background: #eef1f4; color: #4b5563; }
.pill.sent, .pill.quoted { background: var(--accent-soft); color: var(--accent-hi); }
.pill.accepted, .pill.paid, .pill.confirmed, .pill.active { background: var(--ok-soft); color: var(--ok); }
.pill.declined, .pill.void, .pill.cancelled, .pill.archived { background: var(--danger-soft); color: var(--danger); }
.pill.inquiry, .pill.partial, .pill.lead, .pill.solicit { background: var(--warn-soft); color: var(--warn); }
.pill.lost { background: var(--danger-soft); color: var(--danger); }
.pill.cold { background: #e8eef2; color: #52708a; }
.pill.completed, .pill.past { background: #ece9f6; color: #5b4a92; }
.pill.quote { background: var(--accent-soft); color: var(--accent-hi); }
.pill.invoice { background: #ece9f6; color: #5b4a92; }

/* ---------- pinned notes ---------- */
.pinned {
  background: linear-gradient(135deg, #fdf8ec 0%, #fffbf2 100%);
  border: 1px solid #ecd9a8; border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 18px;
  white-space: pre-line; font-size: 13.5px; box-shadow: var(--shadow);
}
.pinned .tag { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .9px;
  color: var(--gold); display: block; margin-bottom: 4px; }

/* ---------- search + toolbar ---------- */
.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar input[type=text] { max-width: 320px; background: #fff; }
.toolbar select { width: auto; min-width: 140px; }
.spacer { flex: 1; }

/* ---------- modal ---------- */
.modal-back {
  position: fixed; inset: 0; background: rgba(13, 30, 36, .45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 6vh 16px; z-index: 100; overflow-y: auto;
}
.modal {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%;
  max-width: 560px; padding: 24px 26px; animation: pop .18s ease-out;
  border: 1px solid color-mix(in srgb, var(--line) 80%, #fff);
}
.modal.wide { max-width: 780px; }
@keyframes pop { from { transform: translateY(6px) scale(.98); opacity: .5; } }
.modal h3 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.modal-head .modal-x { flex: 0 0 auto; font-size: 18px; line-height: 1; margin: -2px -4px 0 0; }
.modal .actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

/* ---------- toast ---------- */
#toasts { position: fixed; bottom: 22px; right: 22px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow-lg);
  animation: pop .18s ease-out; max-width: 380px; border: 1px solid rgba(255,255,255,.08);
}
.toast.error { background: var(--danger); }

/* ---------- doc editor ---------- */
.col-head { display: flex; gap: 8px; align-items: center; padding: 4px 0; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .7px; color: var(--muted); border-bottom: 2px solid var(--line); }
.doc-lines-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -2px 4px; }
.doc-lines { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 13px; }
.doc-lines th.col-qty, .doc-lines th.col-days { width: 44px; min-width: 44px; }
.doc-lines th.col-rate { width: 58px; min-width: 58px; }
.doc-lines th.col-meta, .doc-lines td.num.col-meta { color: #5f6672; font-weight: 400; }
.doc-lines th.col-meta { color: #6b7280; font-weight: 600; }
.doc-lines td.linetotal, .doc-lines th.col-total { color: var(--ink); font-weight: 600; }
.doc-lines th { text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px;
  color: var(--muted); padding: 6px 6px; border-bottom: 2px solid var(--line); white-space: nowrap; }
.doc-lines td { padding: 5px 4px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc-lines input, .doc-lines select { padding: 6px 8px; font-size: 13px; max-width: 100%; }
.doc-lines input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.doc-lines input[type=number]::-webkit-outer-spin-button,
.doc-lines input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.doc-lines td.num .f-qty { width: 38px; min-width: 38px; max-width: 44px; padding: 4px 3px; text-align: center; }
.doc-lines td.num .f-days { width: 38px; min-width: 38px; max-width: 44px; padding: 4px 3px; text-align: center; }
.doc-lines td.num .f-rate { width: 54px; min-width: 54px; max-width: 64px; padding: 4px 3px; }
.doc-lines .num input { text-align: right; min-width: 38px; }
.doc-lines .f-name { min-width: 120px; width: 100%; }
.doc-lines tr.child-row td { background: #fafbfc; }
.doc-lines tr.child-row td:first-child { padding-left: 26px; }
.doc-lines tr.is-hidden td { opacity: .45; }
.doc-lines tr.is-hidden td:first-child { text-decoration: none; }
.doc-lines .f-desc-slot .rte, .doc-lines .ch-desc-slot .rte { margin-top: 2px; }
.doc-lines .f-desc-slot .rte-bar, .doc-lines .ch-desc-slot .rte-bar { padding: 4px 6px; gap: 1px; }
.doc-lines .f-desc-slot .rte-bar button, .doc-lines .ch-desc-slot .rte-bar button { padding: 3px 7px; font-size: 12px; }
.doc-lines .f-desc-slot .rte-area, .doc-lines .ch-desc-slot .rte-area { min-height: 72px !important; max-height: 180px; font-size: 13px; padding: 8px 10px; }
.doc-lines .f-desc-slot .rte-wrap, .doc-lines .ch-desc-slot .rte-wrap { margin-bottom: 0; }
.doc-editor-page input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.doc-editor-page input[type=number]::-webkit-outer-spin-button,
.doc-editor-page input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.linetotal { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; padding-top: 12px !important; }
.mini { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
.iconbtn { border: 0; background: none; cursor: pointer; font-size: 15px; padding: 5px 7px; border-radius: var(--radius-sm); color: var(--muted); transition: background .1s, color .1s; }
.drag-h { cursor: grab; user-select: none; padding: 2px 4px; opacity: .55; }
.drag-h:active { cursor: grabbing; }
.iconbtn:hover { background: #eef1f4; color: var(--ink); }
.iconbtn.on { color: var(--accent-hi); background: var(--accent-soft); }
.totals-box { margin-left: auto; max-width: 320px; font-size: 13.5px; }
.totals-box .row { display: flex; justify-content: space-between; padding: 4px 8px; }
.totals-box .grand { border-top: 2px solid var(--ink); font-weight: 800; font-size: 16px; margin-top: 4px; padding-top: 8px; }

/* dashboard stat tiles */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
@media (max-width: 980px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px 18px; position: relative; overflow: hidden;
  transition: transform .12s, box-shadow .12s;
}
.stat:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 24, 40, .08); }
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent-hi) 70%, var(--gold)));
}
.stat .v { font-size: 28px; font-weight: 800; margin-top: 4px; letter-spacing: -.03em; line-height: 1.1; }
.stat .k { font-size: 11px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); font-weight: 700; }
.hide-amt .num, .hide-amt .stat .v { filter: blur(7px); user-select: none; }

/* login */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(255,255,255,.08), transparent),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(200,150,62,.12), transparent),
    linear-gradient(155deg, #0c2630 0%, #0f4c5c 45%, #14657a 100%);
  width: 100%;
}
.login-card {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 36px 38px; width: 400px; border: 1px solid rgba(255,255,255,.2);
}
.login-card .brand { font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -.03em;
  display: flex; flex-direction: column; align-items: center; text-align: center; }
.login-card .brand img { max-width: 180px; max-height: 56px; margin-bottom: 8px; border-radius: 8px; }
.login-card .brand small { display: block; font-size: 10.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.2px; margin: 4px 0 24px; width: 100%; text-align: center; }
.err { background: var(--danger-soft); color: var(--danger); border-radius: var(--radius-sm); padding: 10px 13px;
  font-size: 13px; margin-bottom: 12px; font-weight: 600; }
.auth-divider { display:flex; align-items:center; gap:10px; margin:16px 0 12px; color:var(--muted); font-size:12px; font-weight: 600; }
.auth-divider::before, .auth-divider::after { content:""; flex:1; height:1px; background:#e5e7eb; }
.auth-switch { text-align:center; margin-top:18px; font-size:13px; color:var(--muted); }
.auth-switch a { color:var(--accent-hi); font-weight:700; text-decoration:none; }
.login-card .btn.primary { background:var(--accent); color:#fff; border:0; width: 100%; }
.login-card .btn.google { width:100%; justify-content:center; background:#fff; color:#1a1d21;
  border:1.5px solid #d1d5db; font-weight:700; box-shadow: none; }
.login-card .btn.google:hover { background:#f8fafc; transform: none; }

/* ---------- grid/card views ---------- */
.vtoggle { display: flex; border: 1px solid #d1d9e3; border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.vtoggle button { border: 0; background: transparent; padding: 8px 13px; cursor: pointer; font-size: 14px; color: var(--muted); font-weight: 600; transition: background .1s; }
.vtoggle button.on { background: var(--accent-soft); color: var(--accent-hi); }
.cardgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; }
.gcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px; cursor: pointer;
  transition: box-shadow .15s, transform .15s, border-color .15s;
  display: flex; flex-direction: column; gap: 8px;
}
.gcard:hover {
  box-shadow: 0 8px 24px rgba(16,24,40,.1); transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
}
.gcard .gtitle { font-weight: 800; font-size: 15px; line-height: 1.3; letter-spacing: -.02em;
  display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.gcard .gpin { background: #fdf8ec; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0;
  padding: 6px 10px; font-size: 12px; color: #6b5a2a; overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.gcard .gfoot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 8px; }

.note-item { border-bottom: 1px solid var(--line); padding: 11px 2px; }
.note-item:last-child { border-bottom: 0; }
.note-item .meta { font-size: 11.5px; color: var(--faint); margin-top: 3px; }
.contact-chip {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 8px;
  background: #fafbfc; transition: border-color .12s, box-shadow .12s;
}
.contact-chip:hover { border-color: color-mix(in srgb, var(--accent) 20%, var(--line)); box-shadow: var(--shadow); }
.contact-chip .roles { margin-top: 3px; display: flex; gap: 4px; flex-wrap: wrap; }
.kv { margin: 0 0 8px; } .kv dt { font-size: 11px; text-transform: uppercase; letter-spacing: .7px;
  color: var(--muted); font-weight: 700; } .kv dd { margin: 1px 0 10px; white-space: pre-line; }
.filechip { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px 12px; margin: 0 8px 8px 0; font-size: 13px; background: #fafbfc; }

/* ---------- rich text editor ---------- */
.rte { border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.rte-bar { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; padding: 7px 9px;
           background: #f6f8fa; border-bottom: 1px solid var(--line); }
.rte-bar button { border: 0; background: transparent; padding: 5px 9px; border-radius: 7px;
                  font-size: 13px; cursor: pointer; color: #374151; line-height: 1; transition: background .1s; }
.rte-bar button:hover { background: #e8edf0; }
.rte-bar select { width: auto; padding: 4px 6px; font-size: 12.5px; border: 1px solid var(--line);
                  border-radius: 7px; background: #fff; max-width: 170px; }
.rte-sep { width: 1px; height: 18px; background: var(--line); margin: 0 5px; }
.rte-area { padding: 12px 14px; font-size: 14px; font-weight: 400; font-style: normal; line-height: 1.55; outline: none; overflow-y: auto; max-height: 420px; }
.rte-area:focus { box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 12%, transparent); }
.rte-area ul, .rte-area ol { margin: 6px 0 6px 22px; }
.rte-area a { color: var(--accent); }
