/* 點金網創意-智能雲端樞紐 · Touchgold Smart Cloud Hub */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700&family=DM+Sans:opsz,wght@9..40,500;9..40,600;9..40,700&display=swap");

:root {
  --bg: #0b1220;
  --bg-elevated: #111827;
  --bg-card: #151d2e;
  --bg-card-hover: #1a2438;
  --bg-input: #0d1524;
  --bg-muted: #1e293b;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --faint: #64748b;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.14);
  --accent-hover: #dbb43a;
  --accent-text: #0b1220;
  --indigo: #6366f1;
  --indigo-soft: rgba(99, 102, 241, 0.16);
  --ok: #10b981;
  --ok-soft: rgba(16, 185, 129, 0.12);
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.12);
  --err: #f43f5e;
  --err-soft: rgba(244, 63, 94, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --font: "Noto Sans TC", "DM Sans", system-ui, sans-serif;
  --mono: "SF Mono", "Cascadia Code", ui-monospace, Menlo, Consolas, monospace;
  --topbar-h: 64px;
  --font-scale: 1;
  --base-font: 16.5px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: calc(var(--base-font) * var(--font-scale));
}
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body {
  font-size: 1rem;
}
a { color: #f0d78c; text-decoration: none; transition: color .15s; }
a:hover { color: #fff; text-decoration: underline; }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.login-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(201, 162, 39, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(99, 102, 241, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(16, 185, 129, 0.05), transparent 60%);
  pointer-events: none;
}
.login-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.login-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 20px;
  background: #e8f0f8;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}
.login-card h1 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.login-card .sub {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.login-card .domain {
  margin: 0 0 28px;
  color: var(--faint);
  font-size: 0.78rem;
  font-family: var(--mono);
}
.login-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--faint);
}
.turnstile-box {
  min-height: 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.turnstile-box iframe {
  max-width: 100%;
}
.saved-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: middle;
  background: var(--ok-soft);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-family: var(--mono);
}
.saved-badge.missing {
  background: var(--warn-soft);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.35);
}

/* ---------- Form controls ---------- */
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.field { margin-bottom: 16px; }
.field-row {
  display: grid;
  gap: 14px;
}
@media (min-width: 560px) {
  .field-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
input, textarea, select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 0;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:hover, textarea:hover, select:hover { border-color: rgba(148, 163, 184, 0.4); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.55;
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.hint {
  font-size: 0.72rem;
  color: var(--faint);
  margin: 6px 0 0;
  line-height: 1.45;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}
.check-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: var(--accent-text);
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #e0bc48, #c9a227);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}
.btn-secondary {
  background: var(--bg-muted);
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover:not(:disabled) {
  background: #273548;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
}
.btn-ghost:hover:not(:disabled) {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text);
}
.btn-danger {
  background: var(--err-soft);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.btn-danger:hover:not(:disabled) {
  background: rgba(244, 63, 94, 0.2);
}
.btn-sm { padding: 7px 11px; font-size: 0.78rem; border-radius: 8px; }
.btn-block { width: 100%; }
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
}

/* ---------- Alerts ---------- */
.err-box, .ok-box {
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  display: none;
  line-height: 1.45;
}
.err-box { background: var(--err-soft); border: 1px solid rgba(244, 63, 94, 0.35); color: #fda4af; }
.ok-box { background: var(--ok-soft); border: 1px solid rgba(16, 185, 129, 0.35); color: #6ee7b7; }
.err-box.show, .ok-box.show { display: block; }

/* ---------- App shell ---------- */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 162, 39, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(99, 102, 241, 0.06), transparent 45%),
    var(--bg);
}
.topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #e8f0f8;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.22);
}
.brand-text { min-width: 0; }
.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-en {
  font-size: 0.74rem;
  color: var(--faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.font-zoom {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
}
.font-zoom button {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}
.font-zoom button:hover {
  background: var(--accent-soft);
  color: #f0d78c;
}
.font-zoom button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.font-zoom .zoom-label {
  font-size: 0.68rem;
  color: var(--faint);
  font-weight: 600;
  padding: 0 4px;
  min-width: 2.4em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--mono);
}
.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--faint);
}
.status-pill.ok .dot { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.status-pill.err .dot { background: var(--err); }
.user-chip {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0 4px;
}
@media (max-width: 720px) {
  .topbar { padding: 0 14px; }
  .brand-en, .user-chip { display: none; }
  .brand-title { font-size: 0.82rem; max-width: 42vw; }
}

.main {
  flex: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 64px;
}
@media (max-width: 640px) {
  .main { padding: 20px 14px 48px; }
}

/* ---------- Nav ---------- */
.nav-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  padding: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.nav-tabs button {
  background: transparent;
  border: none;
  color: var(--muted);
  border-radius: 9px;
  padding: 9px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .15s;
  white-space: nowrap;
}
.nav-tabs button:hover { color: var(--text-secondary); background: rgba(148, 163, 184, 0.06); }
.nav-tabs button.active {
  background: var(--accent-soft);
  color: #f0d78c;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.25);
}

/* ---------- Page head ---------- */
.page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.page-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  line-height: 1.55;
}
.page-head-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.page-head-actions a.btn {
  text-decoration: none;
}
.page-head-actions a.btn:hover {
  text-decoration: none;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.6;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.stat-value {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-hint {
  font-size: 0.72rem;
  color: var(--faint);
  margin-top: 4px;
}

/* ---------- Store cards ---------- */
.grid-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .grid-cards { grid-template-columns: 1fr 1fr; }
}
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, background .2s;
  display: flex;
  flex-direction: column;
}
.store-card:hover {
  border-color: rgba(201, 162, 39, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: var(--bg-card-hover);
}
.store-card-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.store-card-head h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}
.store-slug {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--faint);
}
.store-card-body {
  padding: 14px 18px;
  flex: 1;
}
.meta-grid {
  display: grid;
  gap: 8px;
}
.meta-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 0.8rem;
  align-items: start;
}
.meta-row .k {
  color: var(--faint);
  font-weight: 600;
  font-size: 0.72rem;
  padding-top: 1px;
}
.meta-row .v {
  color: var(--text-secondary);
  word-break: break-all;
  font-size: 0.8rem;
  line-height: 1.4;
}
.meta-row .v.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.ready-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.chip-ok { background: var(--ok-soft); color: #6ee7b7; border-color: rgba(16, 185, 129, 0.25); }
.chip-warn { background: var(--warn-soft); color: #fcd34d; border-color: rgba(245, 158, 11, 0.25); }
.chip-off { background: rgba(100, 116, 139, 0.15); color: #94a3b8; border-color: rgba(100, 116, 139, 0.25); }

.store-card-foot {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(0, 0, 0, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.badge-on { background: var(--ok-soft); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-off { background: rgba(100, 116, 139, 0.15); color: #94a3b8; border: 1px solid rgba(100, 116, 139, 0.3); }

.mono { font-family: var(--mono); font-size: 0.8rem; }

.empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--muted);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.4);
}
.empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.empty h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}
.empty p {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--faint);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.info-card h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0d78c;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.info-list .ilabel {
  flex: 0 0 88px;
  color: var(--faint);
  font-weight: 600;
  font-size: 0.78rem;
}
.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.module-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.module-list li:last-child { border-bottom: none; }
.mod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mod-dot.on { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.mod-dot.off { background: var(--faint); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 16, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 32px;
  overflow-y: auto;
  z-index: 100;
}
.modal-backdrop.open { display: flex; animation: fadeIn .15s ease; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  animation: slideUp .2s ease;
  overflow: hidden;
}
.modal.wide { max-width: 720px; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.modal-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.modal-header .sub {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--faint);
  font-weight: 400;
}
.modal-body { padding: 20px 22px; }
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 14px 22px 20px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #f0d78c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.section-label:first-child { margin-top: 0; }
.copy-field {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.copy-field input { flex: 1; margin: 0; }
.copy-field .btn { flex-shrink: 0; }

/* ---------- Table ---------- */
.logs-wrap {
  overflow-x: auto;
  max-height: 56vh;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.logs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.logs-table th, .logs-table td {
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.logs-table th {
  color: var(--faint);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
}
.logs-table tbody tr:hover { background: rgba(148, 163, 184, 0.04); }
.logs-table tbody tr:last-child td { border-bottom: none; }
.status-success { color: #6ee7b7; font-weight: 600; }
.status-error, .status-reject { color: #fda4af; font-weight: 600; }
.status-skip { color: #fcd34d; font-weight: 600; }

/* ---------- Utils ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
