@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --bg: #050505;
  --surface: #111318;
  --surface-alt: #191e26;
  --orange: #ff6600;
  --orange-soft: rgba(255, 102, 0, 0.14);
  --text: #eef2f6;
  --muted: rgba(238, 242, 246, 0.62);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.13);
  --danger: #f87171;
  --ok: #34d399;
  --radius: 10px;
  --radius-sm: 8px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

html { color-scheme: dark; }

body {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.011em;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--orange-soft);
  color: var(--text);
}

a {
  color: var(--orange);
  text-decoration: none;
}
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.muted { color: var(--muted); font-size: 12px; }

/* —— Login / 2FA —— */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255, 102, 0, 0.16), transparent 55%),
    var(--bg);
}
.login-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow), 0 24px 48px rgba(0, 0, 0, 0.45);
}
.login-card .logo { width: 72px; height: 72px; }
.login-card h1 {
  margin: 10px 0 2px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.login-card .muted { margin: 0 0 16px; }
.login-card form.stack { max-width: none; }

.pw-field {
  position: relative;
  display: block;
  width: 100%;
}
.pw-field input {
  width: 100%;
  padding-right: 36px;
}
.pw-toggle {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.pw-toggle:hover { color: var(--orange); }
.pw-toggle .i { width: 16px; height: 16px; }
.pw-toggle-hide { display: none; }
.pw-field.is-shown .pw-toggle-show { display: none; }
.pw-field.is-shown .pw-toggle-hide { display: block; }

/* —— Icons —— */
.i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.btn .i { width: 15px; height: 15px; }
.icon-btn .i { width: 16px; height: 16px; }
.sidebar-toggle .i { width: 16px; height: 16px; transition: transform 0.18s ease; }
.who .i { width: 16px; height: 16px; }

/* —— Shell / sidebar —— */
.shell { display: flex; min-height: 100vh; }

.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  transition: width 0.18s ease;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 0 2px 8px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px;
}
.brand img { width: 28px; height: 28px; flex-shrink: 0; }
.brand-text { white-space: nowrap; }

.sidebar-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.sidebar-toggle:hover {
  color: var(--orange);
  border-color: rgba(255, 102, 0, 0.4);
  background: var(--orange-soft);
}

.nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav a:hover {
  background: var(--surface-alt);
  text-decoration: none;
  color: var(--text);
}
.nav a.active {
  background: var(--orange-soft);
  color: var(--orange);
  text-decoration: none;
  box-shadow: inset 2px 0 0 var(--orange);
}
.nav a.nav-logout {
  margin-top: auto;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding-top: 12px;
}

.who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  padding: 10px 8px 4px;
  border-top: 1px solid var(--line);
  letter-spacing: 0.01em;
  min-width: 0;
}
.who-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 901px) {
  html.sidebar-collapsed .sidebar {
    width: 68px;
    padding-left: 8px;
    padding-right: 8px;
    align-items: stretch;
  }
  html.sidebar-collapsed .brand-row {
    flex-direction: column;
    align-items: center;
  }
  html.sidebar-collapsed .brand { padding: 2px 0; }
  html.sidebar-collapsed .brand-text,
  html.sidebar-collapsed .nav-label,
  html.sidebar-collapsed .who-text { display: none; }
  html.sidebar-collapsed .sidebar-toggle .i { transform: rotate(180deg); }
  html.sidebar-collapsed .nav a {
    justify-content: center;
    padding: 8px;
    width: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  html.sidebar-collapsed .nav a.active { box-shadow: none; }
  html.sidebar-collapsed .nav a.nav-logout {
    border-radius: var(--radius-sm);
    padding-top: 8px;
    width: 40px;
  }
  html.sidebar-collapsed .who {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}

/* —— Main —— */
.main {
  flex: 1;
  min-width: 0;
  padding: 20px 24px 28px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}
.top h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.top .muted {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.card .label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card .value {
  font-size: 22px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--orange);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

/* —— Tables —— */
table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
th, td {
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
td { color: var(--text); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, 0.025); }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange);
  color: #140800;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.12s ease, background 0.12s ease;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn:hover { filter: brightness(1.06); text-decoration: none; }
.btn.ghost:hover { background: var(--surface-alt); filter: none; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; filter: none; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.icon-btn:hover {
  background: var(--surface-alt);
  color: var(--orange);
  text-decoration: none;
}
.icon-btn.danger:hover {
  color: var(--danger);
  background: rgba(248, 113, 113, 0.12);
}
.icon-btn.ghost {
  border-color: var(--line-strong);
  height: 31px;
  min-width: 31px;
}
.icon-btn.ghost:hover {
  background: var(--surface-alt);
}

/* —— Flash —— */
.flash {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 13px;
  border: 1px solid transparent;
}
.flash.ok {
  background: rgba(52, 211, 153, 0.12);
  color: var(--ok);
  border-color: rgba(52, 211, 153, 0.22);
}
.flash.error {
  background: rgba(248, 113, 113, 0.12);
  color: var(--danger);
  border-color: rgba(248, 113, 113, 0.22);
}
.flash.warn {
  background: var(--orange-soft);
  color: var(--orange);
  border-color: rgba(255, 102, 0, 0.28);
}

/* —— Forms —— */
form.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}
input, select, textarea {
  background: #0a0b0d;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font: inherit;
  font-size: 13px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
input:hover, select:hover, textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
input[type="file"] {
  padding: 6px 8px;
  cursor: pointer;
}
textarea {
  min-height: 120px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
}

.row-actions { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.row-actions a { font-size: 12px; font-weight: 500; }
.row-actions .icon-btn { color: var(--muted); }
form .row-actions { gap: 8px; }
th.col-actions, td.col-actions { width: 1%; white-space: nowrap; text-align: right; }

.pill {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}
.pill.active {
  background: rgba(52, 211, 153, 0.14);
  color: var(--ok);
  border-color: rgba(52, 211, 153, 0.2);
}
.pill.dormant {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.pill.admin {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: rgba(255, 102, 0, 0.25);
}

.form-card { max-width: 560px; }

.otp-input {
  text-align: center;
  letter-spacing: 0.28em;
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.dev-otp {
  text-align: left;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px dashed rgba(255, 102, 0, 0.55);
  border-radius: var(--radius);
  background: var(--orange-soft);
}
.dev-otp .label {
  font-size: 10px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dev-otp .digits {
  font-size: 22px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin: 4px 0 6px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .shell { flex-direction: column; }
  .sidebar {
    width: auto;
    height: auto;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }
  .brand-row { border-bottom: 0; padding: 0; }
  .brand { padding: 0 8px 0 0; }
  .sidebar-toggle { display: none; }
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
  }
  .nav a.nav-logout {
    margin-top: 0;
    border-top: 0;
    border-radius: var(--radius-sm);
    padding-top: 7px;
  }
  .who { margin-top: 0; border-top: 0; padding: 0 8px; margin-left: auto; }
  .grid { grid-template-columns: 1fr 1fr; }
  .main { padding: 16px; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  margin: 12px 0 10px;
  max-width: none;
}
.filters label { min-width: 150px; }
.filters .btn,
.filters .icon-btn { flex-shrink: 0; }
.table-wrap { overflow: auto; }

/* Style / Size: pin header row while the body scrolls */
.card.sku-table {
  overflow: hidden;
}
.sku-table .table-wrap {
  max-height: calc(100vh - 140px);
}
.sku-table table {
  border-collapse: separate;
  border-spacing: 0;
}
.sku-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}
.page-sub {
  margin: 4px 0 0;
  max-width: 46em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.011em;
  text-transform: none;
  line-height: 1.45;
}
.tag-total {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tags-page .top { align-items: flex-start; }
.tags-page .tag-total { margin-top: 4px; }
.tags-page > .card { margin-bottom: 12px; }
.icon-btn.copied { color: var(--ok); }
.tags-work {
  max-width: none;
  width: 100%;
}
.tags-work form.stack {
  max-width: none;
  margin-top: 12px;
}
.tags-work form.stack label,
.tags-work form.stack input,
.tags-work form.stack textarea {
  width: 100%;
}
.tags-work textarea {
  overflow-x: auto;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
}
.tags-work .attach-hint { margin: 12px 0 0; }
.label-hint {
  font-weight: 400;
  color: rgba(238, 242, 246, 0.45);
}

.combo { position: relative; }
.combo > label { margin-bottom: 5px; }
.combo-field { position: relative; display: flex; align-items: center; }
.combo-field .combo-input {
  width: 100%;
  padding-left: 32px;
  padding-right: 34px;
}
.combo-search-icon {
  position: absolute;
  left: 10px;
  display: flex;
  color: var(--muted);
  pointer-events: none;
}
.combo-search-icon .i { width: 15px; height: 15px; }
.combo-clear {
  position: absolute;
  right: 4px;
}
.combo-list {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 240px;
  overflow: auto;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--surface-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.combo-list li[role="option"] {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.combo-list li[role="option"]:hover,
.combo-list li[role="option"].is-active {
  background: var(--orange-soft);
}
.combo-opt-main { font-weight: 500; }
.combo-opt-meta { font-size: 11px; color: var(--muted); }
.combo-empty { padding: 8px 10px; }

.sku-summary {
  margin-top: 12px;
  padding: 10px 12px;
  background: #0a0b0d;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.sku-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 16px;
}
.sku-summary-grid .label {
  display: block;
  margin-bottom: 2px;
}
.sku-summary-grid span:not(.label) {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}

.empty-prompt { padding: 28px 16px; }
.empty-prompt p { margin: 0 0 6px; }
.empty-prompt p:last-child { margin-bottom: 0; }

.table-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.table-toolbar h3 { margin: 0; }
.table-count {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.table-count strong { color: var(--text); font-weight: 600; }
.count-sep { margin: 0 6px; opacity: 0.7; }

.card.tags-table { overflow: hidden; }
.tags-table .table-wrap { max-height: calc(100vh - 280px); }
.cell-code {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.pager {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.pager-num {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border: 1px solid transparent;
}
.pager-num:hover {
  text-decoration: none;
  color: var(--orange);
  background: var(--surface-alt);
}
.pager-num.is-current {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: rgba(255, 102, 0, 0.25);
  pointer-events: none;
}
.pager-gap { color: var(--muted); padding: 0 4px; }
.icon-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.pill.issued,
.pill.assigned {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: rgba(255, 102, 0, 0.25);
}
.pill.qc_pass {
  background: rgba(52, 211, 153, 0.14);
  color: var(--ok);
  border-color: rgba(52, 211, 153, 0.2);
}
.pill.qc_fail,
.pill.void {
  background: rgba(248, 113, 113, 0.12);
  color: var(--danger);
  border-color: rgba(248, 113, 113, 0.22);
}
.pill.qc_pending {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* —— Carton labels upload —— */
.uploads-page .top { align-items: flex-start; }
.upload-card {
  width: 100%;
  max-width: none;
  overflow: visible;
  margin-bottom: 18px;
}
.upload-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: none;
}
.upload-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.upload-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(255, 102, 0, 0.25);
}
.upload-head-icon .i { width: 16px; height: 16px; }
.upload-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.upload-head-text .muted {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: -0.011em;
  font-weight: 400;
}
.dropzone {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 16px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #0a0b0d;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.dropzone:hover {
  border-color: rgba(255, 102, 0, 0.55);
  background: rgba(255, 102, 0, 0.06);
}
.dropzone:focus-within,
.dropzone.is-dragover {
  border-color: var(--orange);
  border-style: solid;
  background: var(--orange-soft);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.dropzone-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  font-size: 0;
}
.dropzone-input:hover,
.dropzone-input:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}
.dropzone-icon {
  display: flex;
  color: var(--orange);
  pointer-events: none;
}
.dropzone-icon .i { width: 20px; height: 20px; }
.dropzone-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  pointer-events: none;
  text-align: left;
}
.dropzone-lead {
  font-weight: 500;
  color: var(--text);
}
.dropzone-file {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropzone.has-file .dropzone-file { color: var(--text); }

.danger { color: var(--danger); }
.raw {
  white-space: pre-wrap;
  font-family: var(--mono);
  font-size: 12px;
}
tr.row-error td { background: rgba(248, 113, 113, 0.1); }
