/* ============================================================
   Admin Conversões — estilos (LG-4)
   Compartilha .wh-drawer / .wh-json / .wh-error-box do admin-webhooks
   ============================================================ */

.cv-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cv-row { cursor: pointer; transition: background 0.12s ease; }
.cv-row:hover { background: var(--surface-hover); }

.cv-event-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  background: var(--bg-4);
  padding: 2px 6px;
  border-radius: 3px;
}

.cv-muted { color: var(--mute); font-size: 12px; }

/* Stats */
.cv-stats { margin-bottom: 14px; }

.cv-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.cv-stat-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 10px 12px;
}

.cv-stat-platform {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cv-stat-event {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
}

.cv-stat-numbers {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.cv-stat-sent    { color: #b6d987; }
.cv-stat-failed  { color: #e8a89e; }
.cv-stat-pending { color: var(--gold-light); }
