/* "Napredek uvajanja" card */


.napredek {
  background: #fff;
  border: 1px solid var(--c-ink-3);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  margin-bottom: var(--sp-4);
}
.check-item.is-done { background: var(--c-ink-1); border-color: var(--c-ink-2); }
.check-item.is-done .check-item__title { color: var(--c-ink-6); text-decoration: line-through; }
.check-item.is-done .check-item__desc { color: var(--c-ink-5); }
.check-item.is-done .check-item__box {
  background: var(--c-status-ok);
  border-color: var(--c-status-ok);
}
.check-item.is-done .check-item__box svg { opacity: 1; }
.integration-row__status.is-on { color: var(--c-status-ok); font-weight: 600; }/* ──────────────────────────────────────────────────────────────
   DEV-ONLY: floating reset link (bottom-right corner)
   On merge into production, remove or hide this with feature flag.
   ────────────────────────────────────────────────────────────── */




.dev-reset {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(35, 31, 32, 0.85);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-family: var(--font-mono);
  border-radius: var(--r-pill);
  text-decoration: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: opacity var(--dur-fast) var(--ease-out);
  opacity: 0.5;
}
.dev-reset:hover { opacity: 1; color: #fff; }
.dev-reset::before {
  content: '';
  font-size: 13px;
  line-height: 1;
}