/* Tailwind covers layout; this file only holds things Tailwind utility
   classes can't express cleanly — the paywall blur and small transitions. */

.blurred-field {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.lead-card.unlocked .blurred-field {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.lead-card.unlocked .unlock-overlay {
  display: none;
}

#controls-body {
  transition: max-height 0.2s ease;
  overflow: hidden;
}

#controls-body.collapsed {
  max-height: 0;
}

.subtrade-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
