/* =============================================================================
   Interest List · Lead Assignment
   Styles for /interest-list-lead-assign (page-scoped under .interest-list-page)
   Source design: Lead Assign v2.html (Claude Design handoff)
   ============================================================================= */

.interest-list-page {
  --il-bg: #f6f7f9;
  --il-surface: #ffffff;
  --il-surface-2: #fafbfc;
  --il-border: #e5e7eb;
  --il-border-strong: #d1d5db;
  --il-ink: #111827;
  --il-ink-2: #374151;
  --il-muted: #6b7280;
  --il-muted-2: #9ca3af;

  --il-brand: #2563eb;
  --il-brand-50: #eff6ff;
  --il-brand-600: #1d4ed8;

  --il-accent: #16a34a;
  --il-accent-50: #ecfdf5;
  --il-accent-600: #15803d;

  --il-warn: #d97706;
  --il-warn-50: #fffbeb;
  --il-warn-600: #b45309;

  --il-danger: #dc2626;
  --il-danger-50: #fef2f2;
  --il-danger-600: #b91c1c;

  --il-info: #0e7490;

  --il-shadow-sm: 0 1px 2px rgba(16,24,40,.04);
  --il-shadow-md: 0 4px 12px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);

  --il-radius: 10px;
  --il-radius-sm: 6px;
  --il-radius-pill: 999px;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--il-ink);
  background: var(--il-bg);
  -webkit-font-smoothing: antialiased;
}
.interest-list-page *,
.interest-list-page *::before,
.interest-list-page *::after { box-sizing: border-box; }

.interest-list-page .mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-feature-settings: "tnum";
}

/* ---------- Page grid ---------- */
.interest-list-page .il-page {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}

/* ---------- Card shell ---------- */
.interest-list-page .il-card {
  background: var(--il-surface);
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius);
  box-shadow: var(--il-shadow-sm);
  overflow: hidden;
}

/* ---------- Left rail (confirmers) ---------- */
.interest-list-page .il-rail {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}
.interest-list-page .il-rail-head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--il-border);
  background: var(--il-surface);
}
.interest-list-page .il-rail-head .il-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--il-muted);
  margin-bottom: 2px;
}
.interest-list-page .il-rail-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--il-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.interest-list-page .il-rail-head .il-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--il-muted);
  background: var(--il-surface-2);
  border: 1px solid var(--il-border);
  padding: 2px 8px;
  border-radius: var(--il-radius-pill);
}

.interest-list-page .il-rail-search {
  padding: 10px 12px;
  border-bottom: 1px solid var(--il-border);
  background: var(--il-surface);
}
.interest-list-page .il-rail-search input {
  width: 100%;
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius-sm);
  padding: 7px 10px 7px 30px;
  font-family: inherit;
  font-size: 13px;
  color: var(--il-ink);
  background: var(--il-surface-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>") no-repeat 10px center;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.interest-list-page .il-rail-search input:focus {
  border-color: var(--il-brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  background-color: var(--il-surface);
}

.interest-list-page .il-rail-list {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px;
  flex: 1;
  max-height: calc(100vh - 220px);
  scrollbar-width: thin;
  scrollbar-color: #c7cad1 transparent;
}
.interest-list-page .il-rail-list::-webkit-scrollbar { width: 10px; }
.interest-list-page .il-rail-list::-webkit-scrollbar-track { background: transparent; }
.interest-list-page .il-rail-list::-webkit-scrollbar-thumb {
  background: #d6d8de;
  border-radius: 999px;
  border: 2px solid var(--il-surface);
}
.interest-list-page .il-rail-list::-webkit-scrollbar-thumb:hover { background: #b9bcc4; }

.interest-list-page .il-confirmer {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--il-radius-sm);
  cursor: pointer;
  transition: background .12s;
}
.interest-list-page .il-confirmer:hover { background: var(--il-surface-2); }
.interest-list-page .il-confirmer + .il-confirmer { border-top: 1px solid var(--il-border); }

.interest-list-page .il-avatar {
  width: 28px; height: 28px;
  border-radius: var(--il-radius-pill);
  background: linear-gradient(135deg,#dbeafe,#e0e7ff);
  color: #1e40af;
  font-weight: 600;
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.interest-list-page .il-avatar .il-dot {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--il-accent);
  border: 2px solid var(--il-surface);
}
.interest-list-page .il-avatar.offline { background: #f3f4f6; color: var(--il-muted); }
.interest-list-page .il-avatar.offline .il-dot { background: var(--il-muted-2); }

.interest-list-page .il-confirmer .il-body { min-width: 0; }
.interest-list-page .il-confirmer .il-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--il-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.interest-list-page .il-load-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  border-radius: var(--il-radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--il-brand-50);
  color: var(--il-brand-600);
  border: 1px solid rgba(37,99,235,.18);
  line-height: 1;
}
.interest-list-page .il-load-badge.warn {
  background: var(--il-warn-50);
  color: var(--il-warn-600);
  border-color: rgba(217,119,6,.22);
}
.interest-list-page .il-load-zero {
  color: var(--il-muted-2);
  font-size: 13px;
  font-weight: 400;
}

/* ---------- Right column ---------- */
.interest-list-page .il-main { min-width: 0; }

.interest-list-page .il-panel-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--il-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--il-surface);
}
.interest-list-page .il-panel-head .il-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.interest-list-page .il-panel-head .il-title-text { line-height: 1.25; }
.interest-list-page .il-panel-head .il-badge-icon {
  width: 36px; height: 36px;
  background: var(--il-accent-50);
  color: var(--il-accent-600);
  border-radius: var(--il-radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.interest-list-page .il-panel-head h1 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--il-ink);
  line-height: 1.2;
}
.interest-list-page .il-panel-head .il-sub {
  font-size: 12.5px;
  color: var(--il-muted);
  line-height: 1.2;
}

/* ---------- Toolbar ---------- */
.interest-list-page .il-toolbar {
  padding: 14px 20px;
  background: var(--il-surface-2);
  border-bottom: 1px solid var(--il-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.interest-list-page .il-toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.interest-list-page .il-field-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--il-muted);
}

.interest-list-page .il-chips {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--il-surface);
  border: 1px solid var(--il-border);
  border-radius: var(--il-radius-sm);
  padding: 4px;
}
.interest-list-page .il-chip {
  border: 1px solid transparent;
  background: transparent;
  color: var(--il-ink-2);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--il-radius-sm);
  cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}
.interest-list-page .il-chip:hover { background: var(--il-surface-2); }
.interest-list-page .il-chip.active {
  background: var(--il-brand-50);
  color: var(--il-brand-600);
  border-color: rgba(37,99,235,.2);
}

/* buttons */
.interest-list-page .il-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--il-border);
  background: var(--il-surface);
  color: var(--il-ink-2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--il-radius-sm);
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
}
.interest-list-page .il-btn:hover { background: var(--il-surface-2); border-color: var(--il-border-strong); }
.interest-list-page .il-btn-accent {
  background: var(--il-accent);
  color: #fff;
  border-color: var(--il-accent);
}
.interest-list-page .il-btn-accent:hover { background: var(--il-accent-600); border-color: var(--il-accent-600); }
.interest-list-page .il-btn-icon { padding: 7px 9px; }

/* ---------- Stats strip ---------- */
.interest-list-page .il-stats {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--il-border);
  background: var(--il-surface);
  align-items: center;
}
.interest-list-page .il-stat .il-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--il-muted);
}
.interest-list-page .il-stat .il-stat-val {
  font-size: 18px;
  font-weight: 600;
  color: var(--il-ink-2);
  margin-top: 2px;
  line-height: 1.15;
}
.interest-list-page .il-stat.primary .il-stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--il-muted);
}
.interest-list-page .il-stat.primary .il-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--il-ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.interest-list-page .il-stat .il-stat-val .il-delta {
  font-size: 12px;
  font-weight: 600;
  color: var(--il-warn);
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Table ---------- */
.interest-list-page .il-table-wrap {
  overflow-x: auto;
  background: var(--il-surface);
}
.interest-list-page table.il-leads {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  /* Fit-to-container: explicit column widths sum to 100%, content truncates. */
  table-layout: fixed;
}

/* Column widths — tuned to fit a typical 1280-1440px viewport without horizontal scroll.
   Status column dropped (always "Pending"); TSRID folded into Customer as caption. */
.interest-list-page table.il-leads col.il-w-assign   { width: 84px; }
.interest-list-page table.il-leads col.il-w-customer { width: auto; min-width: 156px; }
.interest-list-page table.il-leads col.il-w-company  { width: 92px; }
.interest-list-page table.il-leads col.il-w-source   { width: 92px; }
.interest-list-page table.il-leads col.il-w-appt     { width: 92px; }
.interest-list-page table.il-leads col.il-w-days     { width: 56px; }
.interest-list-page table.il-leads col.il-w-written  { width: 68px; }
.interest-list-page table.il-leads col.il-w-city     { width: 104px; }
.interest-list-page table.il-leads col.il-w-kill     { width: 62px; }
.interest-list-page table.il-leads col.il-w-delete   { width: 76px; }

/* Tighten horizontal padding so rows pack into the available width. */
.interest-list-page table.il-leads thead th,
.interest-list-page table.il-leads tbody td {
  padding-left: 8px;
  padding-right: 8px;
}

/* Truncation only on the columns that actually need it — leave action cells,
   countdown pills, and date cells alone so their content stays readable. */
.interest-list-page td.il-customer {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* City stack: each line truncates on its own */
.interest-list-page .il-city .il-city-name,
.interest-list-page .il-city .il-city-zip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Source label gets the same treatment — long source names truncate. */
.interest-list-page .il-tag-source {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.interest-list-page table.il-leads thead th {
  background: var(--il-surface-2);
  color: var(--il-ink-2);
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--il-border);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.interest-list-page table.il-leads tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--il-border);
  color: var(--il-ink-2);
  white-space: nowrap;
  vertical-align: middle;
}
.interest-list-page table.il-leads tbody tr:hover td { background: #fafbfd; }
.interest-list-page table.il-leads tbody tr:last-child td { border-bottom: none; }

.interest-list-page td.il-customer {
  color: var(--il-ink);
  font-weight: 600;
}
.interest-list-page td.il-customer .il-customer-name {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interest-list-page td.il-customer .il-customer-name > span:not(.il-d) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interest-list-page td.il-customer .il-customer-name .il-d {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--il-warn);
  box-shadow: 0 0 0 2px rgba(245,158,11,.18);
  flex-shrink: 0;
}
.interest-list-page td.il-customer .il-meta {
  display: block;
  font-weight: 400;
  font-size: 11.5px;
  color: var(--il-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interest-list-page td.il-customer .il-meta.empty { color: var(--il-muted-2); font-style: italic; }
.interest-list-page td.il-muted { color: var(--il-muted); }

.interest-list-page .il-company-text {
  color: var(--il-ink-2);
  font-weight: 500;
}
.interest-list-page .il-tag-source {
  color: var(--il-ink-2);
  font-size: 12px;
  font-weight: 400;
}

.interest-list-page .il-appt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.interest-list-page .il-appt .il-date { color: var(--il-ink); font-weight: 600; font-size: 12.5px; }
.interest-list-page .il-appt .il-time { color: var(--il-info); font-weight: 600; font-size: 12px; }
.interest-list-page .il-empty-dash { color: var(--il-muted-2); font-style: italic; }

.interest-list-page .il-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--il-radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  background: #f3f4f6;
  color: var(--il-ink-2);
  border: 1px solid var(--il-border);
}
.interest-list-page .il-countdown.urgent {
  background: #fef2f2;
  color: var(--il-danger);
  border-color: rgba(220,38,38,.25);
}
.interest-list-page .il-countdown.soon {
  background: var(--il-warn-50);
  color: var(--il-warn-600);
  border-color: rgba(217,119,6,.22);
}
.interest-list-page .il-countdown.empty {
  background: transparent;
  color: var(--il-muted-2);
  border: none;
  font-weight: 400;
  font-style: italic;
  min-width: 0;
}

.interest-list-page .il-city { line-height: 1.25; }
.interest-list-page .il-city .il-city-name { color: var(--il-ink); font-weight: 500; font-size: 12.5px; }
.interest-list-page .il-city .il-city-zip  { color: var(--il-muted); font-size: 11.5px; }

.interest-list-page .il-row-btn {
  border: 1px solid transparent;
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  border-radius: var(--il-radius-sm);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(16,24,40,.06), inset 0 -1px 0 rgba(0,0,0,.08);
  transition: background .12s, color .12s, border-color .12s, transform .05s, box-shadow .12s;
  white-space: nowrap;
}
.interest-list-page .il-row-btn:active { transform: translateY(1px); box-shadow: 0 0 0 rgba(0,0,0,0); }
.interest-list-page .il-row-btn.assign {
  background: var(--il-brand);
  border-color: var(--il-brand);
}
.interest-list-page .il-row-btn.assign:hover { background: var(--il-brand-600); border-color: var(--il-brand-600); }
.interest-list-page .il-row-btn.kill {
  background: #f59e0b;
  border-color: #f59e0b;
}
.interest-list-page .il-row-btn.kill:hover { background: #d97706; border-color: #d97706; }
.interest-list-page .il-row-btn.delete {
  background: var(--il-danger);
  border-color: var(--il-danger);
}
.interest-list-page .il-row-btn.delete:hover { background: var(--il-danger-600); border-color: var(--il-danger-600); }

.interest-list-page th.il-col-actions, .interest-list-page td.il-col-actions {
  padding-right: 6px; padding-left: 6px; white-space: nowrap; text-align: center;
}
.interest-list-page th.il-col-assign, .interest-list-page td.il-col-assign {
  padding-left: 12px; padding-right: 6px; text-align: center;
}
.interest-list-page td.il-col-actions:last-child { padding-right: 10px; }

/* ---------- Footer ---------- */
.interest-list-page .il-table-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--il-border);
  background: var(--il-surface-2);
  color: var(--il-muted);
  font-size: 12.5px;
}

/* ---------- Icons ---------- */
.interest-list-page .il-ic { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================================================
   Responsive breakpoints
   - ≤1280  (small laptops / iPad Pro 11" landscape) → narrower rail + padding
   - ≤1024  (iPad landscape / iPad portrait)         → stack rail above panel
   - ≤640   (phones)                                  → simpler stacked layout
   ============================================================================= */

@media (max-width: 1280px) {
  .interest-list-page .il-page {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }
  .interest-list-page .il-rail-head { padding: 12px 14px 10px; }
  .interest-list-page .il-rail-search { padding: 8px 10px; }
  .interest-list-page .il-rail-list { padding: 6px; }
  .interest-list-page .il-confirmer { padding: 6px 8px; gap: 8px; }
  .interest-list-page .il-panel-head { padding: 12px 16px; }
  .interest-list-page .il-toolbar { padding: 12px 16px; }
  .interest-list-page .il-stats { padding: 14px 16px; }

  /* Tighten table columns at this breakpoint so the table fits without scroll
     (e.g. iPad Pro 11" landscape ≈ 1180px viewport). */
  .interest-list-page table.il-leads col.il-w-assign   { width: 80px; }
  .interest-list-page table.il-leads col.il-w-customer { min-width: 140px; }
  .interest-list-page table.il-leads col.il-w-company  { width: 84px; }
  .interest-list-page table.il-leads col.il-w-source   { width: 82px; }
  .interest-list-page table.il-leads col.il-w-appt     { width: 86px; }
  .interest-list-page table.il-leads col.il-w-days     { width: 52px; }
  .interest-list-page table.il-leads col.il-w-written  { width: 64px; }
  .interest-list-page table.il-leads col.il-w-city     { width: 90px; }
  .interest-list-page table.il-leads col.il-w-kill     { width: 58px; }
  .interest-list-page table.il-leads col.il-w-delete   { width: 70px; }
  .interest-list-page table.il-leads thead th,
  .interest-list-page table.il-leads tbody td { padding-left: 6px; padding-right: 6px; }
  .interest-list-page table.il-leads th.il-col-assign,
  .interest-list-page table.il-leads td.il-col-assign { padding-left: 10px; padding-right: 4px; }
  .interest-list-page table.il-leads td.il-col-actions:last-child { padding-right: 8px; }
}

@media (max-width: 1024px) {
  /* Stack rail above panel; both span full width */
  .interest-list-page .il-page {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .interest-list-page .il-rail {
    position: static;
    max-height: none;
  }
  /* Confirmer list becomes a horizontal scroll strip of compact chips */
  .interest-list-page .il-rail-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 8px 12px;
    gap: 6px;
  }
  .interest-list-page .il-confirmer {
    flex: 0 0 auto;
    grid-template-columns: 22px auto auto;
    border-radius: 999px;
    border: 1px solid var(--il-border);
    background: var(--il-surface);
    padding: 4px 10px 4px 6px;
    min-width: max-content;
  }
  .interest-list-page .il-confirmer + .il-confirmer { border-top: none; }
  .interest-list-page .il-avatar { width: 22px; height: 22px; font-size: 9.5px; }
  .interest-list-page .il-avatar .il-dot { width: 7px; height: 7px; }
  .interest-list-page .il-confirmer .il-name {
    font-size: 12px;
    max-width: 160px;
  }
  .interest-list-page .il-load-badge,
  .interest-list-page .il-load-zero { font-size: 11px; }

  /* Stats become 2 columns instead of 4 */
  .interest-list-page .il-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .interest-list-page .il-stat.primary .il-stat-val { font-size: 22px; }

  /* Allow the table to scroll horizontally below this width — data tables on
     small screens get a horizontal scroll, which is a well-established pattern. */
  .interest-list-page .il-table-wrap { overflow-x: auto; }
  .interest-list-page table.il-leads { min-width: 880px; }
}

@media (max-width: 640px) {
  .interest-list-page .il-page { padding: 10px; gap: 10px; }
  .interest-list-page .il-panel-head {
    flex-direction: column;
    align-items: stretch;
  }
  .interest-list-page .il-panel-head .il-btn-accent { align-self: flex-end; }
  .interest-list-page .il-toolbar { flex-direction: column; align-items: stretch; }
  .interest-list-page .il-toolbar-left { width: 100%; }
  .interest-list-page .il-chips { flex-wrap: wrap; }
  .interest-list-page .il-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .interest-list-page table.il-leads { min-width: 820px; }
}
