/* dev-wallet-badge.css — sibling family to .lc-verified + .lc-fu.
 *
 * Sized 16px / inline-flex / circular — matches the .lc-fu pattern
 * (launchpad-live-coins.css:411-423) so the badge family on the row
 * reads as ONE strip of meta-signals (verified · followup · devw).
 *
 * Two variants:
 *   .lc-devw--fresh    green — wallet first activity < 14d ago
 *   .lc-devw--repeat   red   — wallet has ≥2 prior token launches
 *
 * Both can co-occur on the same row; they render side-by-side. Colors
 * pulled from the existing palette (.lc-sig-squeeze green #22c55e,
 * .lc-sig-concentrated red #ef4444) so the cross-page signal palette
 * stays unified — no new color identities.
 */

.lc-devw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.lc-devw--fresh {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.lc-devw--repeat {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.lc-table tr:hover .lc-devw--fresh {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(34, 197, 94, 0.50);
}

.lc-table tr:hover .lc-devw--repeat {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.50);
}

/* Stat-card variant — used by dashboard "Deployer" rows (Phase 12C).
 * Larger, full-sentence treatment vs the inline badge above. Hidden
 * for Phase 12A; the class exists so dashboards adding the markup
 * don't fight with phantom defaults.
 */
.dev-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.25em 0.6em;
  border-radius: 0.6em;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.dev-stat--fresh {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.dev-stat--repeat {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
