:root {
  --bg: #f4f5f8;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --ink: #1a1a2e;
  --ink-2: #4a4a5c;
  --muted: #8a8a9e;
  --border: #e4e4ea;
  --brand: #76092d;
  --brand-dark: #5a071f;
  --brand-soft: #fbf2f4;
  --accent: #4a5b78;
  --accent-dark: #364660;
  --accent-soft: #eef1f6;
  --ok: #2ba26a;
  --ok-soft: #e7f6ee;
  --err: #e53e3e;
  --err-soft: #fdecec;
  --warn: #e89000;
  --warn-soft: #fdf4e3;
  --info: #2c6ecb;
  --info-soft: #e8eff9;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--ink); margin-top: 0; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.error { color: var(--err); font-size: 13px; margin-top: 6px; }

/* ======== Topbar ======== */
.topbar {
  background: var(--brand);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-link { display: inline-flex; align-items: center; }
.brand img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.brand .subtitle {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.topnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.topnav-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.topnav-link:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.topnav-link--btn {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  font-family: inherit;
}
.topnav-link--btn:hover { background: rgba(255,255,255,.22); }
.topnav-user { color: rgba(255,255,255,.8); font-size: 13px; }
.topnav-logout { margin: 0; }

/* ======== Container ======== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 24px auto 32px;
  padding: 0 20px;
}
.container--wide { max-width: 1500px; }
.container--full { max-width: none; padding: 0 14px; }

/* ======== Day-kind colour-coded headers (sat/fest/norm) ======== */
.data-table thead th.day-sat { background: #fff7d6; color: #6f5300; }
.data-table thead th.day-fest { background: #fbe3e6; color: #8a1c2b; }
.data-table thead th.day-norm { background: #e3f5ea; color: #155724; }
.data-table .day-num { font-size: 12px; font-weight: 700; }

/* ======== Diff badges ======== */
.diff { display: inline-block; padding: 2px 8px; border-radius: 999px; font-weight: 700; font-size: 12px; vertical-align: middle; margin-left: 6px; }
.diff--pos { background: var(--ok-soft); color: #166c43; }
.diff--neg { background: var(--err-soft); color: #962525; }
.diff--zero { background: #eef0f4; color: #4a4a5c; }

/* ======== Consultant grid (3 colonne side-by-side) ======== */
.consultant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.consultant-grid .card { margin: 0; }
.consultant-grid .card h2 { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.consultant-grid .card h2 .muted { font-size: 13px; font-weight: 500; }
@media (max-width: 768px) {
  .consultant-grid { grid-template-columns: 1fr; }
}

/* ======== Strategy table compatta (full-month grid) ========
 * table-layout: fixed → tutti i giorni hanno EXACT same width.
 * La col label e' fissata via <colgroup>; le altre 28-31 si dividono
 * equamente lo spazio rimanente. Padding/font ridotti per evitare scroll
 * orizzontale fino a ~1100px di viewport. */
.strategy-table { table-layout: fixed; width: 100%; }
.strategy-table th, .strategy-table td { padding: 4px 2px; font-size: 11.5px; overflow: hidden; }
.strategy-table thead th { text-align: center; padding: 5px 2px; }
.strategy-table td.col-num { text-align: center; min-width: 0; }
.strategy-table .row-label { text-align: left; font-weight: 600; white-space: nowrap; padding-left: 8px; padding-right: 8px; }
.strategy-table .day-num { font-size: 11px; font-weight: 700; }
.strategy-table tr.row-divider td { border-top: 2px solid var(--border); }
.strategy-table tbody tr:hover { background: transparent; }
/* Bordi verticali sottili tra le colonne giorno */
.strategy-table th + th, .strategy-table td + td { border-left: 1px solid #f0f0f4; }
/* Diff badge dentro la tabella: ancora piu' piccolo per stare in cella */
.strategy-table .diff { padding: 1px 4px; font-size: 10px; margin: 0; line-height: 1.4; }
/* Promo rows */
.strategy-table .promo-row td.row-label { color: var(--brand); font-weight: 700; }
.strategy-table .promo-cell { background: rgba(118, 9, 45, 0.18); cursor: help; }
.strategy-table .promo-cell--3 { background: rgba(74, 91, 120, 0.22); }
.strategy-table .promo-cell--6 { background: rgba(232, 144, 0, 0.24); }
.strategy-table .promo-cell--12 { background: rgba(43, 162, 106, 0.24); }

/* ======== KPI tiles (Business + per-consultant) ======== */
.kpi-block { margin: 16px 0; }
.kpi-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  border-left: 4px solid var(--brand);
}
.kpi-card--consultant { border-left-color: var(--accent); padding: 12px 14px; }
.kpi-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.kpi-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brand); margin: 0; }
.kpi-card--consultant .kpi-title { color: var(--accent); font-size: 13px; }
.kpi-row { display: flex; gap: 16px; flex-wrap: wrap; }
.kpi-cell { display: flex; flex-direction: column; gap: 2px; min-width: 90px; }
.kpi-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.kpi-value { font-size: 17px; font-weight: 700; color: var(--ink); }
.kpi-card--consultant .kpi-value { font-size: 15px; }
.kpi-cell--primary .kpi-value { color: var(--brand); }
.kpi-card--consultant .kpi-cell--primary .kpi-value { color: var(--accent); }
.kpi-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
@media (max-width: 768px) {
  .kpi-grid-3 { grid-template-columns: 1fr; }
  .kpi-row { gap: 10px; }
}

/* ======== Promo form (per-duration sub-cards) ======== */
.promo-duration-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 10px 0;
  background: var(--surface-2);
}
.promo-duration-card--enabled { background: var(--accent-soft); border-color: var(--accent); }
.promo-duration-card .form-row { margin-bottom: 10px; }
.promo-duration-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-weight: 600; }

.page-head { margin: 8px 0 20px; }
.page-head h1 { font-size: 22px; margin: 0 0 4px; }

/* ======== Month nav ======== */
.month-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.month-title { margin: 0; font-size: 22px; min-width: 220px; text-align: center; }
.month-today { margin-left: auto; }

/* ======== Cards ======== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  margin: 16px 0;
  box-shadow: var(--shadow);
}
.card--table { padding: 0; overflow: hidden; }
.card h2 { font-size: 17px; margin: 0 0 14px; }
.card h3.cat-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 18px 0 8px;
}

/* ======== Forms ======== */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}
.form-inline .form-row { margin-bottom: 0; }
.form-inline .form-row--narrow { flex: 0 0 180px; }
.form-inline .form-row--grow { flex: 1 1 320px; }

.input,
input[type="text"], input[type="number"], input[type="password"], select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,91,120,.18);
}

/* ======== Buttons ======== */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background .15s, border-color .15s, transform .05s;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn.is-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-sm { padding: 6px 12px; font-size: 13px; font-weight: 600; }
.btn-block { display: block; width: 100%; }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; }

.btn-secondary { background: #fff; color: var(--accent); border-color: var(--accent); }
.btn-secondary:hover { background: var(--accent-soft); text-decoration: none; }

.btn-danger { background: var(--err); color: #fff; border-color: var(--err); }
.btn-danger:hover { background: #c92929; border-color: #c92929; text-decoration: none; }

.inline-form { display: inline-block; margin: 0; }

/* ======== Icon buttons (32×32 chip-style) ======== */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .05s;
  vertical-align: middle;
}
.icon-btn:hover { text-decoration: none; }
.icon-btn:active { transform: translateY(1px); }
.icon-btn:disabled { opacity: .45; cursor: not-allowed; }

.icon-btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.icon-btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.icon-btn--secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}
.icon-btn--secondary:hover {
  background: var(--accent);
  color: #fff;
}

.icon-btn--danger {
  background: var(--err-soft);
  color: var(--err);
  border-color: var(--err);
  font-size: 14px;
}
.icon-btn--danger:hover {
  background: var(--err);
  color: #fff;
}

.col-actions-inline { white-space: nowrap; text-align: right; }
.col-actions-inline .icon-btn + .inline-form { margin-left: 4px; }
.col-actions-inline .inline-form + .icon-btn { margin-left: 4px; }

/* "In pari" status (importo da incassare = 0) */
.status--neutral { background: #eef0f4; color: #4a4a5c; }
/* "A credito" status (importo da incassare < 0) */
.status--credit { background: var(--ok-soft); color: #166c43; }

/* ======== Auth card ======== */
.auth-card {
  max-width: 380px;
  margin: 60px auto;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.auth-title { font-size: 22px; margin: 0 0 6px; }

/* ======== Data table ======== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.data-table thead th {
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid #f0f0f4;
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-2); }
.data-table .col-num { text-align: right; white-space: nowrap; }
.data-table .col-total { background: var(--accent-soft); }
.data-table .col-total strong { color: var(--accent); font-size: 15px; }
.data-table .col-status { white-space: nowrap; }
.data-table .col-actions { white-space: nowrap; text-align: right; }
.data-table .col-actions .btn-sm + .inline-form { margin-left: 6px; }
.data-table .col-name a { font-weight: 600; color: var(--ink); }
.data-table .col-name a:hover { color: var(--accent); }

.data-table tr.is-collected td { opacity: .85; }
.data-table tr.is-collected .col-total { background: var(--ok-soft); }
.data-table tr.is-collected .col-total strong { color: #166c43; }

.muted-num { color: var(--ink-2); }

/* ======== Status pills ======== */
.status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status--ok { background: var(--ok-soft); color: #166c43; }
.status--pending { background: var(--warn-soft); color: #8a5a07; }

/* ======== Summary card (pt_detail) ======== */
.summary-card { padding: 18px 22px; }
.summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}
.summary-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 110px;
}
.summary-cell--total {
  padding: 10px 16px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  flex: 1.3 1 130px;
}
.summary-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}
.summary-val { font-size: 20px; }
.summary-cell--total .summary-val strong { color: var(--accent); font-size: 24px; }

/* ======== Flash messages ======== */
.flashes { margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.flash {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid transparent;
}
.flash--success { background: var(--ok-soft); color: #166c43; border-color: #c4e9d4; }
.flash--info { background: var(--info-soft); color: #234d8a; border-color: #c4d8f3; }
.flash--warning { background: var(--warn-soft); color: #8a5a07; border-color: #f4d9a3; }
.flash--danger { background: var(--err-soft); color: #962525; border-color: #f4caca; }
.flash--message { background: var(--info-soft); color: #234d8a; border-color: #c4d8f3; }

.link-muted { font-size: 13px; color: var(--muted); }
.link-muted:hover { color: var(--accent); }

/* ======== Footer ======== */
.footer {
  text-align: center;
  padding: 22px 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.4px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ======== Mobile accordion (deductions) ======== */
.entries-mobile { display: none; }
.entries-mobile__group { padding: 12px 14px 4px; }
.entries-mobile__group + .entries-mobile__group { border-top: 1px solid var(--border); }
.entries-mobile .cat-heading { margin: 6px 0 10px; }

.entry-row {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.entry-row > summary { list-style: none; cursor: pointer; }
.entry-row > summary::-webkit-details-marker { display: none; }

.entry-row__summary {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 0;
}
.entry-row__bar {
  display: block;
  width: 4px;
  align-self: stretch;
  background: var(--accent);
}
.entry-row--lezioni .entry-row__bar { background: #c97a3b; }
.entry-row--commissioni .entry-row__bar { background: #2c6ecb; }
.entry-row--altro .entry-row__bar { background: var(--accent); }
.entry-row--riporto .entry-row__bar { background: #2ba26a; }
.entry-row--recensioni .entry-row__bar { background: #c95b8b; }

.entry-row__main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.entry-row__top {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.entry-row__period {
  font-size: 12px;
  color: var(--muted);
}
.entry-row__right {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.entry-row__amount {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
}
.entry-row__chev {
  color: var(--muted);
  transition: transform .2s;
}
details[open] > summary .entry-row__chev { transform: rotate(180deg); }

.entry-row__expanded {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.entry-row__expanded__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-pill--edit {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}
.btn-pill--edit:hover { background: var(--accent); color: #fff; text-decoration: none; }
.btn-pill--delete {
  background: var(--err-soft);
  color: var(--err);
  border-color: var(--err);
}
.btn-pill--delete:hover { background: var(--err); color: #fff; }

/* ======== Mobile dashboard cards ======== */
.dashboard-mobile { display: none; }

.pt-card {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.pt-card:last-child { border-bottom: none; }
.pt-card.is-collected { background: var(--ok-soft); }
.pt-card__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.pt-card__main:hover { text-decoration: none; }
.pt-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.pt-card__name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pt-card__amount {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
}
.pt-card.is-collected .pt-card__amount { color: #166c43; }
.pt-card__row--meta { font-size: 13px; }
.pt-card__pay {
  flex: 0 0 auto;
  align-self: center;
}

/* ======== Mobile breakpoint ======== */
@media (max-width: 768px) {
  .topbar { padding: 10px 12px; gap: 8px; flex-wrap: wrap; }
  .brand img { height: 32px; }
  .brand .subtitle { font-size: 10px; letter-spacing: 1px; }
  .topnav { gap: 6px; }
  .topnav-link { padding: 6px 10px; font-size: 13px; }
  .topnav-user { display: none; }

  .container { padding: 0 10px; margin: 14px auto 20px; }
  .container--wide { max-width: 100%; }
  .page-head h1 { font-size: 17px; }

  .month-bar { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
  .month-title { font-size: 17px; min-width: 0; flex: 1 1 100%; order: -2; text-align: center; margin: 0 0 4px; }
  .month-bar > .btn-secondary { flex: 1 1 0; }
  .month-today { margin-left: 0; flex: 1 1 100%; order: 10; }
  .month-bar form { flex: 1 1 100%; order: 11; margin: 0; }
  .month-bar form .btn { width: 100%; }

  .card { padding: 14px; margin: 12px 0; border-radius: 8px; }
  .card--table { padding: 0; }
  .summary-card { padding: 12px; }

  .summary-row { flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: stretch; }
  /* 2 colonne in griglia compatta: Fee base e Da incassare in alto, Stato e Pagamento in basso. Nascondo i 5 dettagli detrazioni (gia' visibili sotto nella tabella). */
  .summary-row > .summary-cell { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .summary-cell--detr { display: none; }
  .summary-cell--total { padding: 10px 12px; flex: 1 1 calc(50% - 5px); }
  .summary-cell--total .summary-val strong { font-size: 20px; }
  .summary-val { font-size: 17px; }

  .form-inline { flex-direction: column; align-items: stretch; gap: 10px; }
  .form-inline .form-row--narrow,
  .form-inline .form-row--grow { flex: 1 1 auto; }
  .form-inline .btn { width: 100%; }

  .data-table { display: none; }
  .entries-mobile { display: block; }
  .dashboard-mobile { display: block; }

  .icon-btn { width: 40px; height: 40px; font-size: 18px; }

  /* Login card: full width */
  .auth-card { margin: 24px 12px; padding: 24px; max-width: none; }

  /* Pagine generiche: page-head allineato sx senza margini */
  .page-head { margin: 4px 0 14px; }

  .wzp-toolbar { flex-direction: column; align-items: stretch; gap: 8px; }
  .wzp-toolbar__actions { display: flex; gap: 6px; }
  .wzp-toolbar__actions .btn { flex: 1 1 0; }
  .form-actions { flex-direction: column-reverse; gap: 8px; }
  .form-actions .btn { width: 100%; }
}

/* ======== WZP selezione destinatari ======== */
.wzp-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wzp-toolbar__actions { display: flex; gap: 6px; }

.wzp-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.wzp-list__item {
  border-bottom: 1px solid var(--border);
}
.wzp-list__item label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  cursor: pointer;
  user-select: none;
}
.wzp-list__item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.wzp-list__name { flex: 1 1 auto; font-weight: 600; }
.wzp-list__phone { flex: 0 0 auto; font-variant-numeric: tabular-nums; }

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
