/* Fallback visual layer for staging when Next hashed CSS is stale/missing */
:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-strong: #dbe1ea;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 20% -10%, #ffffff 0%, #f5f7fb 45%, #f3f6fb 100%);
  color: var(--text);
}
.page-wrap { padding: 26px; max-width: 1400px; margin: 0 auto; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.section-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; gap:12px; flex-wrap:wrap; }
.section-title { margin:0; font-size: clamp(2rem, 3vw, 2.9rem); letter-spacing:-.02em; }
.input,.select { height:44px; border:1px solid var(--border-strong); border-radius:12px; padding:0 14px; width:100%; background:#fff; }
.btn-primary{background:linear-gradient(180deg,#1f2937,#111827);color:#fff;border:1px solid #0f172a;border-radius:12px;height:44px;padding:0 16px;cursor:pointer;font-weight:600}
.btn-secondary{background:#fff;color:#111827;border:1px solid var(--border-strong);border-radius:12px;height:44px;padding:0 16px;cursor:pointer}
.table { width:100%; border-collapse:separate; border-spacing:0; }
.table th,.table td { border-top:1px solid #eef2f7; padding:13px 14px; text-align:left; font-size:14px; }
.table th { background:#fbfcfe; color:#6b7280; font-weight:600; }
.badge { border:1px solid #dbe5f0; border-radius:999px; padding:4px 10px; font-size:12px; background:#f8fafc; display:inline-block; color:#334155; font-weight:600; }

/* Leads table normalization (overrides old inline table styles) */
.leads-page table { width:100% !important; border-collapse:separate !important; border-spacing:0 !important; min-width: 980px; }
.leads-page th, .leads-page td {
  border: 0 !important;
  border-top: 1px solid #eef2f7 !important;
  padding: 11px 12px !important;
  font-size: 13px;
}
.leads-page thead th { background:#fbfcfe; color:#667085; font-weight:600; }
.leads-page tbody tr:hover td { background:#fbfdff; }
.leads-page a { color:#1d4ed8; text-decoration:none; font-weight:600; }
.leads-page a:hover { text-decoration:underline; }
