/*!
 * DashTemplate.com — Lead Gen & Pipeline Dashboard · Template Styles
 * © 2025 DashTemplate.com. All Rights Reserved.
 * License: https://dashtemplate.com/license
 */

:root {
  --dt-template-primary: #3B82F6;
  --dt-template-accent:  #22C55E;
}

/* ─── Channel row ────────────────────────── */
.channel-row {
  display: grid;
  grid-template-columns: 1fr 64px 64px 64px 80px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--dt-border);
  font-size: 11.5px;
  transition: background var(--t-fast);
}
.channel-row:hover { background: var(--dt-surface-2); }
.channel-row:last-child { border-bottom: none; }
.channel-row.hdr {
  font-size: 9.5px; font-weight: 700; color: var(--dt-text-3);
  letter-spacing: .07em; text-transform: uppercase; background: var(--dt-surface-2);
}

/* ─── Funnel stage card ──────────────────── */
.funnel-stage {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--dt-surface-2); border: 1px solid var(--dt-border);
  border-radius: 10px; padding: 14px 16px;
}
.funnel-stage__label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--dt-text-3); }
.funnel-stage__value { font-size: 26px; font-weight: 800; letter-spacing: -.04em; }
.funnel-stage__cvr   { font-size: 10.5px; color: var(--dt-text-3); }

/* ─── CPL badge ──────────────────────────── */
.cpl-badge {
  display: inline-block; padding: 2px 7px; border-radius: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700;
}
.cpl-badge.low    { background: rgba(34,197,94,.15);  color: #22C55E; }
.cpl-badge.medium { background: rgba(245,158,11,.15); color: #F59E0B; }
.cpl-badge.high   { background: rgba(239,68,68,.15);  color: #EF4444; }
