/* Supplements to Tailwind CDN. Olive/IFD accents + small polish. */
:root {
  --ifd-olive: #1a1f1e;
  --ifd-accent: #4a7c59;
  --ifd-accent-light: #7fb08a;
}

body { font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif; }

.chip {
  cursor: pointer;
  border: 1px solid #2a302e;
  background: #141917;
  color: #cbd5cf;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.8rem;
  transition: all 0.12s;
}
.chip:hover { border-color: var(--ifd-accent); color: #fff; }

.btn-primary {
  background: var(--ifd-accent);
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover { background: var(--ifd-accent-light); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

table th { font-weight: 600; }
tr.lead-row:hover { background: #161b19; }

/* drawer */
#drawer { transition: transform 0.2s ease; }
#drawer.closed { transform: translateX(-110%); }
