/* ============================================================
   DOitD Visual Studio — design system
   Refined editorial-studio minimalism: warm paper, hairlines,
   serif display numbers, one sharp red accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Albert+Sans:wght@400;500;600;700&display=swap');

:root {
  --paper: #FAFAF8;          /* app background — warm, not clinical */
  --card: #FFFFFF;
  --ink: #1B1B18;            /* charcoal text */
  --ink-soft: #6E6E66;       /* muted grey text */
  --ink-faint: #A5A59B;
  --line: #ECECE5;           /* hairline borders */
  --line-strong: #DDDDD3;
  --red: #E41413;            /* DOitD accent — used sparingly */
  --red-soft: #FDEDED;
  --gold: #C9A96A;           /* Daniela champagne — tiny touches */
  --green: #1F7A4D;  --green-soft: #E8F4EC;
  --amber: #9A6B15;  --amber-soft: #FBF1DC;
  --blue:  #2455A4;  --blue-soft: #EAF0FA;
  --violet:#6D4FA1;  --violet-soft:#F1ECF9;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(27,27,24,.04), 0 8px 24px -12px rgba(27,27,24,.06);
  --shadow-pop: 0 2px 6px rgba(27,27,24,.06), 0 20px 48px -16px rgba(27,27,24,.14);
  --sans: 'Albert Sans', -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --sidebar-w: 232px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }

/* ── App shell ─────────────────────────────────────────────── */
.shell { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--card);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 40;
}
.side-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 20px 18px;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 15px;
  letter-spacing: -.5px;
}
.brand-word { line-height: 1.15; }
.brand-word strong { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -.2px; }
.brand-word span { font-size: 11px; color: var(--ink-soft); letter-spacing: .14em; text-transform: uppercase; }

.side-nav { flex: 1; overflow-y: auto; padding: 6px 12px 12px; }
.nav-group-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); padding: 16px 10px 6px;
}
.nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 8.5px 10px; border-radius: var(--radius-sm);
  color: var(--ink-soft); font-weight: 500; font-size: 14px;
  transition: background .15s, color .15s;
  position: relative;
}
.nav-item svg { width: 17px; height: 17px; flex-shrink: 0; stroke-width: 1.7; }
.nav-item:hover { background: var(--paper); color: var(--ink); }
.nav-item.active { color: var(--ink); background: var(--paper); font-weight: 600; }
.nav-item.active::before {
  content: ''; position: absolute; left: -12px; top: 8px; bottom: 8px;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--red);
}
.nav-item.active svg { color: var(--red); }

.side-foot { border-top: 1px solid var(--line); padding: 14px 20px; }
.side-user { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: 12.5px; font-weight: 700;
}
.side-user .who { flex: 1; min-width: 0; }
.side-user .who b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-user .who span { font-size: 11.5px; color: var(--ink-soft); }
.logout-btn { background: none; border: none; color: var(--ink-faint); padding: 4px; border-radius: 6px; }
.logout-btn:hover { color: var(--red); background: var(--red-soft); }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.content { padding: 30px 36px 56px; max-width: 1240px; width: 100%; margin: 0 auto; }

/* ── Page header ───────────────────────────────────────────── */
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.page-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.page-title { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: -.3px; line-height: 1.1; }
.page-sub { color: var(--ink-soft); margin-top: 6px; font-size: 14px; max-width: 640px; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card-pad { padding: 22px; }
.card-title { font-weight: 700; font-size: 14px; letter-spacing: -.1px; margin-bottom: 14px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.card-title .more { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.card-title .more:hover { color: var(--red); }

/* Stat cards — editorial serif numbers */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 20px 16px;
  transition: transform .18s, box-shadow .18s;
}
a.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.stat .k {
  font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-bottom: 8px;
}
.stat .v { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -.5px; line-height: 1; }
.stat .v small { font-size: 16px; color: var(--ink-faint); font-family: var(--sans); font-weight: 500; }
.stat .hint { font-size: 12px; color: var(--ink-faint); margin-top: 7px; }
.stat.accent .v { color: var(--red); }
.stat.good .v { color: var(--green); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; border: 1px solid transparent;
  padding: 9px 18px; font-weight: 600; font-size: 13.5px;
  transition: filter .15s, background .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { filter: brightness(1.25); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { filter: brightness(.92); }
.btn-ghost { background: var(--card); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-faint); }
.btn-soft { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-soft:hover { border-color: var(--line-strong); }
.btn-sm { padding: 6px 13px; font-size: 12.5px; }
.btn-lg { padding: 12px 24px; font-size: 14.5px; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn svg { width: 15px; height: 15px; }

/* ── Quick actions ─────────────────────────────────────────── */
.quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.quick {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 14px; text-align: center;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.quick:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); border-color: var(--line-strong); }
.quick .qi {
  width: 38px; height: 38px; margin: 0 auto 9px; border-radius: 11px;
  display: grid; place-items: center; background: var(--paper); color: var(--ink);
}
.quick:hover .qi { background: var(--red-soft); color: var(--red); }
.quick .qi svg { width: 18px; height: 18px; stroke-width: 1.7; }
.quick b { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: -.1px; }

/* ── Tables & lists ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-faint);
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.tbl td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr { transition: background .12s; }
.tbl tbody tr:hover { background: var(--paper); }

/* ── Badges & status ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; padding: 3px 10px;
}
.b-grey  { background: var(--paper); color: var(--ink-soft); border: 1px solid var(--line); }
.b-red   { background: var(--red-soft); color: var(--red); }
.b-green { background: var(--green-soft); color: var(--green); }
.b-amber { background: var(--amber-soft); color: var(--amber); }
.b-blue  { background: var(--blue-soft); color: var(--blue); }
.b-violet{ background: var(--violet-soft); color: var(--violet); }
.b-gold  { background: #F7F0E3; color: #8A6B2E; }

.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ── Forms ─────────────────────────────────────────────────── */
.field { margin-bottom: 16px; }
.field > label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px;
}
.input, select.input, textarea.input {
  width: 100%; background: var(--card);
  border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 9.5px 13px; font-size: 14px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(27,27,24,.06); }
textarea.input { resize: vertical; min-height: 74px; }
.input-err { border-color: var(--red) !important; }
.err-msg { color: var(--red); font-size: 12.5px; margin-top: 5px; }
.help { font-size: 12.5px; color: var(--ink-faint); margin-top: 5px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }

/* ── Flash messages ────────────────────────────────────────── */
.flash {
  border-radius: var(--radius-sm); padding: 11px 16px; margin-bottom: 18px;
  font-size: 13.5px; font-weight: 500; border: 1px solid transparent;
  animation: flashIn .25s ease;
}
@keyframes flashIn { from { opacity: 0; transform: translateY(-4px); } }
.flash-success { background: var(--green-soft); color: var(--green); border-color: #CBE7D6; }
.flash-error { background: var(--red-soft); color: var(--red); border-color: #F6CBCB; }

/* ── Login page ────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh; display: grid; place-items: center; padding: 24px;
  background:
    radial-gradient(1200px 500px at 85% -10%, #F3EEE4 0%, transparent 60%),
    radial-gradient(900px 480px at -10% 110%, #FBEBEB 0%, transparent 55%),
    var(--paper);
}
.login-card {
  width: 100%; max-width: 400px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-pop);
  padding: 38px 36px 32px;
  animation: rise .45s cubic-bezier(.2,.9,.3,1);
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.login-brand .brand-mark { width: 38px; height: 38px; border-radius: 10px; font-size: 18px; }
.login-title { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.login-sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 24px; }
.login-foot { text-align: center; margin-top: 22px; font-size: 12px; color: var(--ink-faint); }

/* ── Empty states ──────────────────────────────────────────── */
.empty {
  text-align: center; padding: 44px 20px; color: var(--ink-soft);
}
.empty .glyph {
  width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 14px;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 22px;
}
.empty b { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.empty p { font-size: 13px; max-width: 380px; margin: 0 auto 16px; }

/* ── Misc ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.muted { color: var(--ink-soft); }
.tiny { font-size: 12px; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.flex { display: flex; align-items: center; gap: 10px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.right { margin-left: auto; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 18px 0; }

.money { font-family: var(--serif); letter-spacing: -.3px; }

/* Integration status rows */
.integr { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.integr:last-child { border-bottom: none; }
.integr .ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 16px;
}
.integr .desc { flex: 1; min-width: 0; }
.integr .desc b { font-size: 14px; }
.integr .desc p { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.integr code { background: var(--paper); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; font-size: 11.5px; }

/* ── Asset library grid ────────────────────────────────────── */
.asset-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1100px) { .asset-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } }
.asset-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: block; box-shadow: var(--shadow);
  transition: transform .16s, box-shadow .16s;
}
.asset-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.asset-thumb {
  position: relative; aspect-ratio: 4 / 3; background:
    repeating-conic-gradient(var(--paper) 0% 25%, #F1F1EB 0% 50%) 0 0 / 22px 22px;
  display: grid; place-items: center; overflow: hidden;
}
.asset-thumb img, .asset-thumb video { width: 100%; height: 100%; object-fit: cover; }
.asset-glyph { font-size: 30px; opacity: .55; }
.asset-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 22px; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.asset-meta { padding: 12px 14px 13px; }
.asset-meta b { font-size: 13px; display: block; line-height: 1.35; }

.chip-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 1.5px solid var(--line-strong); background: var(--card);
  font-size: 12px; line-height: 1; color: #fff; display: grid; place-items: center;
}
.chip-check.on { background: var(--green); border-color: var(--green); }

/* Laravel pagination */
nav[role=navigation] .flex.justify-between { display: none; }
nav[role=navigation] span, nav[role=navigation] a { font-size: 13px; }

/* Modal overlay — display only when the [hidden] attribute is absent */
.modal-overlay:not([hidden]) {
  position: fixed; inset: 0; background: rgba(27,27,24,.4); z-index: 90;
  display: grid; place-items: center; padding: 20px;
}

/* Mobile topbar + drawer */
.topbar { display: none; }
@media (max-width: 960px) {
  .sidebar {
    position: fixed; left: 0; top: 0; bottom: 0;
    transform: translateX(-100%); transition: transform .22s ease;
    box-shadow: none;
  }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-pop); }
  .scrim {
    position: fixed; inset: 0; background: rgba(27,27,24,.28);
    opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 35;
  }
  .scrim.show { opacity: 1; pointer-events: auto; }
  .topbar {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; background: var(--card); border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 30;
  }
  .burger { background: none; border: 1px solid var(--line-strong); border-radius: 9px; padding: 7px 9px; }
  .content { padding: 20px 18px 48px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .grid-3, .row-2, .row-3 { grid-template-columns: 1fr; }
  .page-title { font-size: 24px; }
}
@media (max-width: 520px) {
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat .v { font-size: 24px; }
}

/* ── Video Batch (Stage 9) ─────────────────────────────────── */
.batch-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.batch-chip { flex: 0 0 auto; width: 92px; text-align: center; }
.batch-chip-thumb {
  position: relative; width: 92px; height: 62px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); background: var(--paper);
  display: grid; place-items: center; overflow: hidden;
  font-family: var(--serif); font-size: 18px; color: var(--ink-faint);
}
.batch-chip-thumb img { width: 100%; height: 100%; object-fit: cover; }
.batch-chip.is-done .batch-chip-thumb { border-color: var(--green); }
.batch-chip.is-failed .batch-chip-thumb { border-color: var(--red); }
.batch-chip-time { font-size: 11px; color: var(--ink-soft); margin-top: 4px; letter-spacing: .04em; }
.batch-dur {
  position: absolute; right: 4px; bottom: 4px;
  background: rgba(27,27,24,.78); color: #fff;
  font-size: 10.5px; font-weight: 600; line-height: 1;
  padding: 3px 5px; border-radius: 5px;
}

.batch-row {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; margin-bottom: 10px; box-shadow: var(--shadow);
}
.batch-row.dragging { opacity: .45; }
.batch-row.drop-target { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-soft); }
.drag-handle {
  cursor: grab; color: var(--ink-faint); font-size: 17px; line-height: 1;
  padding: 4px 2px; user-select: none;
}
.batch-thumb {
  position: relative; flex: 0 0 auto; width: 116px; height: 78px;
  border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--paper); display: grid; place-items: center;
  overflow: hidden; font-size: 22px;
}
.batch-thumb img { width: 100%; height: 100%; object-fit: cover; }
.batch-row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.batch-ctl { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.batch-ctl label { color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px; }
.batch-ctl input[type=range] { width: 110px; }
.batch-rowcost { margin-left: auto; font-variant-numeric: tabular-nums; }
.input-mini { padding: 4px 8px; font-size: 12.5px; width: auto; }
.batch-preview { width: 100%; max-height: 260px; background: #000; border-radius: var(--radius-sm); }

@media (max-width: 960px) {
  .batch-row { flex-wrap: wrap; }
  .batch-thumb { width: 96px; height: 66px; }
  .batch-rowcost { margin-left: 0; }
}
.batch-layout { display: grid; grid-template-columns: 1fr 320px; gap: 16px; align-items: start; }
@media (max-width: 960px) { .batch-layout { grid-template-columns: 1fr; } }

/* Video Batch — per-row photo assignment */
.batch-photo-col { flex: 0 0 auto; width: 116px; display: flex; flex-direction: column; gap: 4px; }
.batch-photo-name {
  font-size: 11px; color: var(--ink-soft); text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.batch-photo-btn { padding: 2px 6px; font-size: 11px; align-self: center; }
.batch-thumb.is-pickable { cursor: pointer; transition: border-color .14s, box-shadow .14s; }
.batch-thumb.is-pickable:hover { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-soft); }

.batch-picker {
  flex: 1 0 100%; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
}
.batch-picker-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px; margin-top: 8px;
}
.batch-picker-item {
  background: none; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
  transition: border-color .14s;
}
.batch-picker-item:hover { border-color: var(--line-strong); }
.batch-picker-item.is-active { border-color: var(--red); background: var(--red-soft); }
.batch-picker-item img { width: 100%; height: 56px; object-fit: cover; border-radius: 5px; }
.batch-picker-item span { font-size: 10.5px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.batch-picker-none {
  height: 56px; display: grid; place-items: center; border-radius: 5px;
  background: var(--paper); font-size: 18px; color: var(--ink-faint);
}
@media (max-width: 960px) { .batch-photo-col { width: 96px; } }

/* Video Batch — row-centric clip cards (each clip owns its image) */
.batch-photo-actions { display: flex; flex-direction: column; gap: 4px; }
.batch-thumb-empty { font-size: 26px; color: var(--ink-faint); line-height: 1; }
.batch-thumb.is-pickable .batch-thumb-empty { color: var(--red); }
.batch-row:has(.batch-thumb-empty) .batch-thumb { border-style: dashed; }
