/*
 * Every colour in this file comes from a token. The two palettes below are the
 * only place a literal colour is allowed to appear, which is what makes adding
 * a theme a matter of filling in one block rather than hunting for stray hexes.
 *
 * js/theme.js resolves auto/light/dark into data-theme before first paint.
 */

:root,
:root[data-theme="dark"] {
  color-scheme: dark;

  --bg: #0a0e15;
  --panel: #111823;
  --panel-2: #161f2e;
  --line: #223046;
  --line-soft: #1a2534;
  --line-hover: #33465f;

  --ink: #e8edf5;
  --ink-dim: #93a3b8;
  --ink-faint: #64748b;

  --accent: #6366f1;
  --accent-hi: #818cf8;
  --accent-ring: rgba(99, 102, 241, .16);
  --accent-wash: rgba(99, 102, 241, .03);
  --accent-wash-hi: rgba(99, 102, 241, .07);
  --accent-wash-hot: rgba(99, 102, 241, .13);
  --accent-sel: rgba(99, 102, 241, .10);
  --on-accent: #fff;

  --ok: #10b981;
  --danger: #f43f5e;
  --ok-ink: #6ee7b7;
  --err-ink: #fda4af;

  --input-bg: #0c121c;
  --track: #22314a;
  --knob: #7f8ea5;
  --thumb-ring: #0f1620;
  --chip: #24344a;
  --chip-ink: #9fb3cd;
  --scroll-thumb: #24344a;
  --dz-line: #2b3b52;
  --hover-wash: rgba(255, 255, 255, .015);

  --topbar-from: #121a27;
  --topbar-to: #0d131d;
  --pill-bg: rgba(16, 185, 129, .08);
  --pill-line: rgba(16, 185, 129, .30);
  --pill-ink: #6ee7b7;
  --pill-halo: rgba(16, 185, 129, .18);
  --brand-shadow: rgba(99, 102, 241, .35);

  --danger-wash: rgba(244, 63, 94, .12);
  --danger-chip: rgba(244, 63, 94, .16);
  --danger-chip-ink: #fda4af;

  --checker: #0e141e;
  --preview-ring: rgba(255, 255, 255, .07);
  --preview-shadow: rgba(0, 0, 0, .55);
  --backdrop: rgba(3, 6, 12, .74);
  --dlg-shadow: rgba(0, 0, 0, .60);
  --swatch-ring: rgba(255, 255, 255, .18);
}

:root[data-theme="light"] {
  color-scheme: light;

  --bg: #eef1f6;
  --panel: #ffffff;
  --panel-2: #f4f6fa;
  --line: #d3dae5;
  --line-soft: #e6eaf1;
  --line-hover: #aebbcb;

  --ink: #0f172a;
  --ink-dim: #47546a;
  --ink-faint: #6f7e95;

  /* A touch deeper than the dark palette's indigo — the same hue reads lighter
     against white and would not hold contrast on the filled buttons. */
  --accent: #4f46e5;
  --accent-hi: #6366f1;
  --accent-ring: rgba(79, 70, 229, .18);
  --accent-wash: rgba(79, 70, 229, .04);
  --accent-wash-hi: rgba(79, 70, 229, .07);
  --accent-wash-hot: rgba(79, 70, 229, .12);
  --accent-sel: rgba(79, 70, 229, .09);
  --on-accent: #fff;

  --ok: #059669;
  --danger: #e11d48;
  --ok-ink: #047857;
  --err-ink: #be123c;

  --input-bg: #ffffff;
  --track: #d8dfea;
  --knob: #9aa7ba;
  --thumb-ring: #ffffff;
  --chip: #e3e9f2;
  --chip-ink: #55637a;
  --scroll-thumb: #c5cedc;
  --dz-line: #bcc7d6;
  --hover-wash: rgba(15, 23, 42, .03);

  --topbar-from: #ffffff;
  --topbar-to: #f5f7fb;
  --pill-bg: rgba(5, 150, 105, .09);
  --pill-line: rgba(5, 150, 105, .28);
  --pill-ink: #047857;
  --pill-halo: rgba(5, 150, 105, .16);
  --brand-shadow: rgba(79, 70, 229, .28);

  --danger-wash: rgba(225, 29, 72, .10);
  --danger-chip: rgba(225, 29, 72, .12);
  --danger-chip-ink: #be123c;

  --checker: #e1e6ee;
  --preview-ring: rgba(15, 23, 42, .12);
  --preview-shadow: rgba(15, 23, 42, .18);
  --backdrop: rgba(15, 23, 42, .42);
  --dlg-shadow: rgba(15, 23, 42, .22);
  --swatch-ring: rgba(15, 23, 42, .20);
}

:root {
  --radius: 10px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

/* An author `display` on an element beats the UA stylesheet's `[hidden]` rule,
   so anything given `display: grid`/`flex` below would ignore the attribute
   entirely — which is how an empty canvas ended up showing under the "add a
   file" placeholder. */
[hidden] { display: none !important; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font: 14px/1.5 var(--sans);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; }

kbd {
  font: 11px/1 var(--mono);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 4px;
}

/* ── Top bar ─────────────────────────────────────────────────── */

.topbar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--topbar-from), var(--topbar-to));
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent-hi), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 10px var(--brand-shadow);
}

.brand-text { min-width: 0; }
.brand-text h1 { font-size: 15px; letter-spacing: .2px; }
.brand-text p {
  margin: 1px 0 0;
  font-size: 12px;
  color: var(--ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--pill-line);
  background: var(--pill-bg);
  color: var(--pill-ink);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.privacy-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px var(--pill-halo);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  border-radius: 8px;
  padding: 6px 11px;
  font: inherit;
  font-size: 12.5px;
  cursor: pointer;
}
.ghost-btn:hover { color: var(--ink); border-color: var(--line-hover); }

/* Theme switch — auto / light / dark */
.theme-switch {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel-2);
  flex: none;
}
.theme-switch button {
  display: grid;
  place-items: center;
  width: 27px; height: 23px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-faint);
  cursor: pointer;
}
.theme-switch button:hover { color: var(--ink-dim); background: var(--hover-wash); }
.theme-switch button.active { background: var(--accent); color: var(--on-accent); }
.theme-switch svg { width: 14px; height: 14px; }

/* ── Layout ──────────────────────────────────────────────────── */

.layout {
  flex: 1;
  display: grid;
  grid-template-columns: 372px 1fr;
  min-height: 0;
}

.panel {
  border-right: 1px solid var(--line-soft);
  background: var(--panel);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 40px;
}

.panel::-webkit-scrollbar, .viewport::-webkit-scrollbar { width: 10px; height: 10px; }
.panel::-webkit-scrollbar-thumb, .viewport::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb); border-radius: 6px; border: 2px solid transparent; background-clip: padding-box;
}

.block { border-bottom: 1px solid var(--line-soft); padding: 14px 16px 16px; }

.block-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.block-head h2 {
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}

/* collapsible groups */
details.group { border-bottom: 1px solid var(--line-soft); }
details.group > summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700;
  user-select: none;
}
details.group > summary::-webkit-details-marker { display: none; }
details.group > summary:hover { color: var(--ink-dim); background: var(--hover-wash); }
details.group > summary .chev {
  margin-left: auto; transition: transform .15s ease; opacity: .6;
  width: 14px; height: 14px;
}
details.group[open] > summary .chev { transform: rotate(90deg); }
details.group .group-body { padding: 2px 16px 16px; }

/* ── Dropzone ────────────────────────────────────────────────── */

.dropzone {
  border: 1.5px dashed var(--dz-line);
  border-radius: var(--radius);
  background: var(--accent-wash);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  display: grid;
  gap: 4px;
  justify-items: center;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--accent); background: var(--accent-wash-hi); outline: none; }
.dropzone.hot { border-color: var(--accent-hi); background: var(--accent-wash-hot); }
.dz-icon { width: 26px; height: 26px; color: var(--accent-hi); }
.dropzone strong { font-size: 13px; font-weight: 600; }
.dropzone span { font-size: 11.5px; color: var(--ink-faint); }

.filelist { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; }
.filelist li {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel-2);
  font-size: 12.5px;
}
.filelist li.sel { border-color: var(--accent); background: var(--accent-sel); }
.filelist .fdot { width: 9px; height: 9px; flex: none; overflow: visible; }
/* A white watermark colour would otherwise be an invisible dot on a light panel. */
.filelist .fdot circle { stroke: var(--swatch-ring); stroke-width: 1; }
.filelist .fname { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; }
.filelist .fsize { color: var(--ink-faint); font-size: 11px; font-variant-numeric: tabular-nums; flex: none; }
.filelist .kind {
  flex: none; font-size: 9.5px; font-weight: 700; letter-spacing: .05em;
  padding: 2px 5px; border-radius: 4px; background: var(--chip); color: var(--chip-ink);
}
.filelist .kind.pdf { background: var(--danger-chip); color: var(--danger-chip-ink); }
.x-btn {
  flex: none; background: none; border: 0; color: var(--ink-faint);
  cursor: pointer; font-size: 15px; line-height: 1; padding: 2px 4px; border-radius: 4px;
}
.x-btn:hover { color: var(--danger); background: var(--danger-wash); }

/* ── Presets ─────────────────────────────────────────────────── */

.presets { display: flex; flex-wrap: wrap; gap: 6px; }
.preset {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--ink-dim);
  border-radius: 999px;
  padding: 5px 11px;
  font: inherit; font-size: 12px;
  cursor: pointer;
  transition: all .12s;
}
.preset:hover { color: var(--ink); border-color: var(--line-hover); }
.preset.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
/* Fixed two-line box, not min-height. The hint swaps as you hover across the
   presets, and a growing box shoved every control below it down the page. */
.preset-hint {
  margin: 8px 0 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-faint);
  height: 2.9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.scope-pill {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Controls ────────────────────────────────────────────────── */

.ctl { margin-top: 13px; }
.ctl:first-child { margin-top: 4px; }

.ctl-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  font-size: 12px; color: var(--ink-dim); margin-bottom: 5px;
}
.ctl-val { font: 11.5px/1 var(--mono); color: var(--ink-faint); font-variant-numeric: tabular-nums; }

input[type="text"], textarea, select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
}
textarea { resize: vertical; min-height: 62px; line-height: 1.45; }
input[type="text"]:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-ring);
}
select { appearance: none; cursor: pointer; padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%), linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

input[type="range"] {
  width: 100%; height: 18px; margin: 0;
  background: transparent; appearance: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track { height: 4px; border-radius: 3px; background: var(--track); }
input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 14px; height: 14px; margin-top: -5px;
  border-radius: 50%; background: var(--accent-hi); border: 2px solid var(--thumb-ring);
  box-shadow: 0 1px 4px var(--preview-shadow);
}
input[type="range"]::-moz-range-track { height: 4px; border-radius: 3px; background: var(--track); }
input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent-hi); border: 2px solid var(--thumb-ring);
}

.swatch-row { display: flex; align-items: center; gap: 8px; }
input[type="color"] {
  width: 38px; height: 30px; padding: 0; flex: none;
  border: 1px solid var(--line); border-radius: 7px; background: none; cursor: pointer;
}
input[type="color"]::-webkit-color-swatch-wrapper { padding: 3px; }
input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 4px; }
.swatches { display: flex; gap: 5px; flex-wrap: wrap; }
.swatches button {
  width: 20px; height: 20px; border-radius: 5px; cursor: pointer;
  border: 1px solid var(--swatch-ring); padding: 0;
}
/* Order must match COLOR_SWATCHES in app.js. These are watermark ink colours
   the user picks for the document, not UI chrome, so they do not change with
   the theme. */
.sw-0 { background: #e11d48; }
.sw-1 { background: #dc2626; }
.sw-2 { background: #f59e0b; }
.sw-3 { background: #10b981; }
.sw-4 { background: #2563eb; }
.sw-5 { background: #7c3aed; }
.sw-6 { background: #0f172a; }
.sw-7 { background: #ffffff; }

.chk, .toggle-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-dim); cursor: pointer; user-select: none;
}
input[type="checkbox"] {
  appearance: none; width: 34px; height: 19px; flex: none; border-radius: 999px;
  background: var(--track); border: 1px solid var(--line); position: relative; cursor: pointer;
  transition: background .15s;
}
input[type="checkbox"]::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 13px; height: 13px; border-radius: 50%; background: var(--knob); transition: transform .15s, background .15s;
}
input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
input[type="checkbox"]:checked::after { transform: translateX(15px); background: #fff; }
.chk input[type="checkbox"] { width: 30px; height: 17px; }
.chk input[type="checkbox"]::after { width: 11px; height: 11px; }
.chk input[type="checkbox"]:checked::after { transform: translateX(13px); }

.seg { display: flex; flex-wrap: wrap; gap: 5px; }
.seg button {
  flex: 1 1 auto; min-width: 62px;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--ink-dim);
  border-radius: 7px; padding: 6px 8px; font: inherit; font-size: 12px; cursor: pointer;
  text-transform: capitalize;
}
.seg button:hover { color: var(--ink); }
.seg button.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.token-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.token {
  border: 1px dashed var(--line); background: transparent; color: var(--ink-faint);
  border-radius: 6px; padding: 3px 7px; font: 11px/1.4 var(--mono); cursor: pointer;
}
.token:hover { color: var(--accent-hi); border-color: var(--accent); }

.help { margin: 5px 0 0; font-size: 11px; color: var(--ink-faint); line-height: 1.45; }

.row-btns { display: flex; flex-wrap: wrap; gap: 6px; }
.mini-btn {
  border: 1px solid var(--line); background: var(--panel-2); color: var(--ink-dim);
  border-radius: 7px; padding: 5px 9px; font: inherit; font-size: 11.5px; cursor: pointer;
}
.mini-btn:hover { color: var(--ink); border-color: var(--line-hover); }
.mini-btn:disabled { opacity: .5; cursor: not-allowed; }
.mini-btn.wide { display: block; width: 100%; margin-top: 8px; padding: 7px 9px; }
.linkish { background: none; border: 0; color: var(--accent-hi); cursor: pointer; font: inherit; font-size: inherit; padding: 0; text-decoration: underline; }
.fineprint { margin: 9px 0 0; font-size: 11px; color: var(--ink-faint); }

/* ── Stage ───────────────────────────────────────────────────── */

.stage { display: flex; flex-direction: column; min-width: 0; min-height: 0; background: var(--bg); }

.stage-head {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 16px; border-bottom: 1px solid var(--line-soft); min-height: 44px;
}
.tabs { display: flex; gap: 5px; overflow-x: auto; flex: 1; min-width: 0; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  border: 1px solid var(--line-soft); background: transparent; color: var(--ink-faint);
  border-radius: 7px; padding: 4px 10px; font: inherit; font-size: 12px; cursor: pointer;
  white-space: nowrap; max-width: 190px; overflow: hidden; text-overflow: ellipsis; flex: none;
}
.tab:hover { color: var(--ink-dim); }
.tab.active { background: var(--panel-2); border-color: var(--line); color: var(--ink); }
.stage-tools { display: flex; align-items: center; gap: 14px; flex: none; }
.meta { font: 11.5px/1 var(--mono); color: var(--ink-faint); font-variant-numeric: tabular-nums; }

.viewport {
  flex: 1; min-height: 0; overflow: auto; display: grid; place-items: center; padding: 22px;
  background-image:
    linear-gradient(45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(-45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--checker) 75%),
    linear-gradient(-45deg, transparent 75%, var(--checker) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
}

.canvas-wrap { display: grid; place-items: center; max-width: 100%; }
#preview {
  max-width: 100%;
  max-height: calc(100vh - 190px);
  border-radius: 4px;
  box-shadow: 0 10px 40px var(--preview-shadow), 0 0 0 1px var(--preview-ring);
  /* Documents are white in both themes; this is the paper, not the chrome. */
  background: #fff;
}

.empty { text-align: center; color: var(--ink-faint); max-width: 380px; }
.empty svg { width: 44px; height: 44px; opacity: .5; margin-bottom: 10px; }
.empty p { margin: 0; font-size: 13.5px; }
.empty .sub { margin-top: 6px; font-size: 12px; opacity: .75; }

.actionbar {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 16px; border-top: 1px solid var(--line-soft); background: var(--panel);
}
.status { font-size: 12.5px; color: var(--ink-faint); min-height: 18px; flex: 1; min-width: 0; }
.status.err { color: var(--err-ink); }
.status.ok { color: var(--ok-ink); }
.status.busy::after {
  content: ""; display: inline-block; width: 10px; height: 10px; margin-left: 7px;
  border: 2px solid var(--track); border-top-color: var(--accent-hi);
  border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -1px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.actions { display: flex; gap: 8px; flex: none; }
.btn {
  border-radius: 8px; padding: 8px 15px; font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: filter .12s;
}
.btn:disabled { opacity: .42; cursor: not-allowed; }
.btn.primary { background: var(--accent); color: var(--on-accent); }
.btn.primary:not(:disabled):hover { filter: brightness(1.13); }
.btn.secondary { background: var(--panel-2); border-color: var(--line); color: var(--ink-dim); }
.btn.secondary:not(:disabled):hover { color: var(--ink); border-color: var(--line-hover); }

/* ── Dialog ──────────────────────────────────────────────────── */

.dlg {
  border: 1px solid var(--line); border-radius: 14px; background: var(--panel); color: var(--ink);
  max-width: 620px; padding: 24px; box-shadow: 0 24px 70px var(--dlg-shadow);
}
.dlg::backdrop { background: var(--backdrop); backdrop-filter: blur(2px); }
.dlg h3 { font-size: 17px; margin-bottom: 10px; }
.dlg h4 { font-size: 13.5px; margin: 18px 0 6px; color: var(--ink); }
.dlg p { color: var(--ink-dim); font-size: 13px; margin: 0 0 10px; }
.dlg ul { color: var(--ink-dim); font-size: 13px; padding-left: 19px; margin: 0 0 4px; }
.dlg li { margin-bottom: 7px; }
.dlg strong { color: var(--ink); }
.dlg form { margin-top: 18px; text-align: right; }

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  body { overflow: auto; }
  .layout { grid-template-columns: 1fr; }
  .panel { border-right: 0; border-bottom: 1px solid var(--line-soft); overflow: visible; }
  .stage { min-height: 72vh; }
  #preview { max-height: 60vh; }
  .brand-text p { display: none; }
  .privacy-pill span:not(.dot) { display: none; }
  .privacy-pill::after { content: "No upload"; }
}
