/* ============================================================
   PortalRez — La Rez / ADLINP  ·  Design System
   Charte : Montserrat · vert #7ED321 · minimaliste / aéré
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand */
  --green:        #7ED321;
  --green-hover:  #6bc11a;
  --green-dark:   #5aa315;
  --green-pale:   #f0fbe4;
  --green-pale-2: #e8f7d4;

  /* Surfaces */
  --white:        #ffffff;
  --bg:           #ffffff;
  --bg-2:         #f8f9fa;
  --bg-3:         #f1f3f5;

  /* Text */
  --title:        #2d3436;
  --text:         #2d3436;
  --muted:        #636e72;
  --faint:        #97a0a6;

  /* Lines */
  --border:       #e0e0e0;
  --border-soft:  #eef0f1;

  /* Feedback */
  --warning:      #f39c12;
  --warning-bg:   #fef9e7;
  --warning-text: #b9770e;
  --error:        #e74c3c;
  --error-bg:     #fdecea;
  --info:         #3498db;
  --info-bg:      #eaf4fb;

  /* Status tags */
  --tag-orange-bg:#ffeaa7;  --tag-orange-tx:#9c6f0a;
  --tag-blue-bg:  #dfe6e9;  --tag-blue-tx:  #2d3436;
  --tag-green-bg: #d8f3b8;  --tag-green-tx: #4e8a12;
  --tag-red-bg:   #fadbd8;  --tag-red-tx:   #c0392b;
  --tag-purple-bg:#e8e2f7;  --tag-purple-tx:#6c4fb8;
  --tag-slate-bg: #e3e8ec;  --tag-slate-tx: #5a6b78;

  /* Geometry */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(45,52,54,.04);
  --shadow-sm: 0 1px 3px rgba(45,52,54,.06), 0 1px 2px rgba(45,52,54,.04);
  --shadow:    0 4px 16px rgba(45,52,54,.07);
  --shadow-md: 0 8px 30px rgba(45,52,54,.10);
  --shadow-lg: 0 18px 50px rgba(45,52,54,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Typographic scale ---------- */
.t-display { font-size: 34px; font-weight: 700; letter-spacing: -.5px; line-height: 1.15; color: var(--title); }
.t-h1 { font-size: 26px; font-weight: 700; letter-spacing: -.3px; line-height: 1.2; color: var(--title); }
.t-h2 { font-size: 20px; font-weight: 600; letter-spacing: -.2px; line-height: 1.25; color: var(--title); }
.t-h3 { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--title); }
.t-body { font-size: 15px; font-weight: 400; line-height: 1.55; color: var(--text); }
.t-small { font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--muted); }
.t-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.t-mono-num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.green { color: var(--green-dark); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--r);
  padding: 13px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .18s var(--ease), transform .12s var(--ease), box-shadow .18s var(--ease), border-color .18s;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--green); color: #1f3a06; box-shadow: 0 2px 10px rgba(126,211,33,.35); }
.btn-primary:hover:not(:disabled) { background: var(--green-hover); box-shadow: 0 4px 16px rgba(126,211,33,.42); }

.btn-secondary { background: var(--white); color: var(--title); border: 1.5px solid var(--border); }
.btn-secondary:hover:not(:disabled) { border-color: var(--green); color: var(--green-dark); background: var(--green-pale); }

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover:not(:disabled) { background: var(--bg-2); color: var(--title); }

.btn-validate { background: var(--green-pale); color: var(--green-dark); border: 1.5px solid var(--green); }
.btn-validate:hover:not(:disabled) { background: var(--green); color: #1f3a06; }

.btn-danger { background: var(--white); color: var(--error); border: 1.5px solid #f1c0bb; }
.btn-danger:hover:not(:disabled) { background: var(--error-bg); border-color: var(--error); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: var(--r); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: var(--r-sm); gap: 6px; }

/* ============================================================
   Form fields — underline style
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.field-label { font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .2px; }
.field-label .req { color: var(--green-dark); margin-left: 2px; }

.input, .select, textarea.input {
  font-family: inherit;
  font-size: 15px;
  color: var(--title);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 9px 2px;
  width: 100%;
  transition: border-color .2s var(--ease);
  outline: none;
}
.input::placeholder { color: var(--faint); font-weight: 400; }
.input:focus, .select:focus, textarea.input:focus { border-bottom-color: var(--green); }
.input:disabled { color: var(--faint); }

/* Champs date/heure natifs : aligner sur le style des autres inputs */
.input[type="date"], .input[type="month"], .input[type="time"] {
  min-height: 40px;
  color: var(--title);
  cursor: pointer;
}
.input[type="date"]::-webkit-calendar-picker-indicator,
.input[type="month"]::-webkit-calendar-picker-indicator {
  opacity: .55;
  cursor: pointer;
  transition: opacity .15s;
}
.input[type="date"]:hover::-webkit-calendar-picker-indicator,
.input[type="month"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
.input[type="date"]::-webkit-datetime-edit,
.input[type="month"]::-webkit-datetime-edit { color: var(--title); }
.input[type="date"]:invalid::-webkit-datetime-edit,
.input[type="month"]:invalid::-webkit-datetime-edit { color: var(--faint); }
textarea.input { resize: vertical; min-height: 64px; line-height: 1.5; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636e72' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field.invalid .input, .field.invalid .select { border-bottom-color: var(--error); }
.field-error { font-size: 12px; color: var(--error); font-weight: 500; }
.field-hint { font-size: 12px; color: var(--faint); }

/* boxed variant (used in admin dense forms) */
.input-boxed {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  background: var(--white);
}
.input-boxed:focus { border-color: var(--green); border-bottom-color: var(--green); }

.field-row { display: flex; gap: 18px; }
.field-row > .field { flex: 1; }

/* ============================================================
   Choice cards (logement types etc.)
   ============================================================ */
.choice-grid { display: grid; gap: 12px; }
.choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), transform .12s var(--ease);
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.choice-card:hover { border-color: #c7d0c0; box-shadow: var(--shadow-sm); }
.choice-card.selected { border-color: var(--green); background: var(--green-pale); box-shadow: 0 2px 12px rgba(126,211,33,.18); }
.cc-icon {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); color: var(--muted);
  transition: background .18s, color .18s;
}
.choice-card.selected .cc-icon { background: var(--white); color: var(--green-dark); }
.choice-card .cc-body { flex: 1; min-width: 0; }
.choice-card .cc-title { font-size: 15px; font-weight: 600; color: var(--title); }
.choice-card .cc-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.choice-card .cc-price { font-size: 14px; font-weight: 700; color: var(--green-dark); flex-shrink: 0; }
.choice-card .cc-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.choice-card.selected .cc-check { background: var(--green); border-color: var(--green); }
.choice-card .cc-check svg { opacity: 0; transition: opacity .18s; }
.choice-card.selected .cc-check svg { opacity: 1; }

/* ============================================================
   Radio / checkbox / toggle
   ============================================================ */
.radio-row { display: flex; gap: 12px; }
.radio-opt {
  flex: 1;
  display: flex; align-items: center; gap: 11px;
  border: 2px solid var(--border); border-radius: var(--r);
  padding: 14px 16px; cursor: pointer; background: var(--white);
  transition: border-color .18s, background .18s;
  font-family: inherit;
}
.radio-opt:hover { border-color: #c7d0c0; }
.radio-opt.selected { border-color: var(--green); background: var(--green-pale); }
.radio-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border); position: relative; transition: border-color .18s;
}
.radio-opt.selected .radio-dot { border-color: var(--green); }
.radio-dot::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--green); transform: scale(0); transition: transform .18s var(--ease);
}
.radio-opt.selected .radio-dot::after { transform: scale(1); }
.radio-opt .ro-title { font-size: 14.5px; font-weight: 600; color: var(--title); }
.radio-opt .ro-sub { font-size: 12px; color: var(--muted); }

.check {
  display: inline-flex; align-items: center; gap: 11px; cursor: pointer;
  font-size: 14px; color: var(--text); user-select: none;
}
.check-box {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .18s; background: var(--white);
}
.check.checked .check-box { background: var(--green); border-color: var(--green); }
.check-box svg { opacity: 0; transition: opacity .15s; }
.check.checked .check-box svg { opacity: 1; }

.toggle { width: 46px; height: 27px; border-radius: 100px; background: var(--border); position: relative; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.toggle.on { background: var(--green); }
.toggle-knob { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s var(--ease); }
.toggle.on .toggle-knob { transform: translateX(19px); }

/* ============================================================
   Info boxes
   ============================================================ */
.infobox {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--green-pale); border-left: 4px solid var(--green);
  border-radius: var(--r-sm); padding: 14px 16px;
  font-size: 13.5px; line-height: 1.5; color: var(--text);
}
.infobox .ib-icon { flex-shrink: 0; color: var(--green-dark); margin-top: 1px; }
.infobox strong { font-weight: 600; }
.infobox.warning { background: var(--warning-bg); border-left-color: var(--warning); }
.infobox.warning .ib-icon { color: var(--warning); }
.infobox.error { background: var(--error-bg); border-left-color: var(--error); }
.infobox.error .ib-icon { color: var(--error); }
.infobox.neutral { background: var(--bg-2); border-left-color: var(--faint); }
.infobox.neutral .ib-icon { color: var(--muted); }

/* ============================================================
   Tags / status
   ============================================================ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .2px;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap; line-height: 1.3;
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .85; }
.tag-orange { background: var(--tag-orange-bg); color: var(--tag-orange-tx); }
.tag-blue   { background: var(--tag-blue-bg);   color: var(--tag-blue-tx); }
.tag-green  { background: var(--tag-green-bg);  color: var(--tag-green-tx); }
.tag-red    { background: var(--tag-red-bg);    color: var(--tag-red-tx); }
.tag-purple { background: var(--tag-purple-bg); color: var(--tag-purple-tx); }
.tag-slate  { background: var(--tag-slate-bg);  color: var(--tag-slate-tx); }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 100px;
  background: var(--green); color: #1f3a06; font-size: 11px; font-weight: 700;
}
.badge-soft { background: var(--green-pale); color: var(--green-dark); }
.badge-count { background: var(--error); color: #fff; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.card-pad { padding: 20px; }
.card-flat { box-shadow: none; border-color: var(--border); }
.card-quiet { background: var(--bg-2); border-color: transparent; box-shadow: none; }

/* recap rows */
.recap { display: flex; flex-direction: column; }
.recap-row {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid var(--border-soft);
}
.recap-row:last-child { border-bottom: none; }
.recap-row .rr-label { font-size: 13px; color: var(--muted); font-weight: 500; flex-shrink: 0; }
.recap-row .rr-value { font-size: 14px; color: var(--title); font-weight: 600; text-align: right; }
.recap-section-title { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green-dark); margin: 16px 0 4px; }

/* ============================================================
   Progress steps — circular numbered
   ============================================================ */
.steps { display: flex; align-items: flex-start; justify-content: space-between; position: relative; }
.steps-track { position: relative; }
.step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1; position: relative; z-index: 2;
}
.step-circle {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--border);
  color: var(--faint); font-weight: 700; font-size: 14px;
  transition: all .3s var(--ease); flex-shrink: 0;
}
.step.active .step-circle { border-color: var(--green); color: var(--green-dark); background: var(--green-pale); box-shadow: 0 0 0 4px rgba(126,211,33,.14); }
.step.done .step-circle { border-color: var(--green); background: var(--green); color: #fff; }
.step-label { font-size: 11.5px; font-weight: 600; color: var(--faint); text-align: center; max-width: 92px; transition: color .3s; }
.step.active .step-label { color: var(--title); }
.step.done .step-label { color: var(--green-dark); }
/* connector line */
.step-line { position: absolute; top: 19px; height: 2px; background: var(--border); z-index: 1; transition: background .3s; }
.step-line.filled { background: var(--green); }

/* compact bar variant (3 big steps) */
.bigsteps { display: flex; align-items: center; gap: 0; }
.bigstep { display: flex; align-items: center; gap: 10px; }
.bigstep-num {
  width: 27px; height: 27px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; background: var(--white);
  border: 2px solid var(--border); color: var(--faint); transition: all .3s var(--ease);
}
.bigstep.active .bigstep-num { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 0 0 4px rgba(126,211,33,.16); }
.bigstep.done .bigstep-num { background: var(--green); border-color: var(--green); color: #fff; }
.bigstep-label { font-size: 12px; font-weight: 600; color: var(--faint); white-space: nowrap; }
.bigstep.active .bigstep-label, .bigstep.done .bigstep-label { color: var(--title); }
.bigstep-conn { flex: 1; height: 2px; background: var(--border); margin: 0 8px; border-radius: 2px; overflow: hidden; min-width: 8px; }
.bigstep-conn span { display: block; height: 100%; width: 0; background: var(--green); transition: width .4s var(--ease); }

/* ============================================================
   Vertical timeline (status tracking)
   ============================================================ */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 16px; position: relative; }
.tl-rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-node {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--border); color: var(--faint);
  z-index: 2; transition: all .3s;
}
.tl-item.done .tl-node { background: var(--green); border-color: var(--green); color: #fff; }
.tl-item.active .tl-node { background: var(--green-pale); border-color: var(--green); color: var(--green-dark); box-shadow: 0 0 0 4px rgba(126,211,33,.15); }
.tl-line { width: 2px; flex: 1; background: var(--border); min-height: 18px; }
.tl-item.done .tl-line { background: var(--green); }
.tl-body { padding-bottom: 22px; padding-top: 3px; }
.tl-item:last-child .tl-body { padding-bottom: 0; }
.tl-title { font-size: 14.5px; font-weight: 600; color: var(--faint); }
.tl-item.done .tl-title, .tl-item.active .tl-title { color: var(--title); }
.tl-date { font-size: 12px; color: var(--faint); margin-top: 2px; }
.tl-item.active .tl-title::after { content: 'En cours'; display: inline-block; margin-left: 8px; font-size: 10px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--green-dark); background: var(--green-pale); padding: 2px 7px; border-radius: 100px; vertical-align: middle; }

/* ============================================================
   Confirmation check
   ============================================================ */
.big-check {
  width: 88px; height: 88px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
  box-shadow: 0 10px 30px rgba(126,211,33,.4);
  animation: pop .5s var(--ease);
}
.big-check.ring { background: var(--green-pale); border: 3px solid var(--green); box-shadow: 0 8px 26px rgba(126,211,33,.22); }
@keyframes pop { 0% { transform: scale(.3); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* ============================================================
   Dropzone (file upload)
   ============================================================ */
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--r);
  padding: 22px; text-align: center; cursor: pointer; background: var(--bg-2);
  transition: border-color .2s, background .2s; color: var(--muted);
}
.dropzone:hover { border-color: var(--green); background: var(--green-pale); }
.dropzone.filled { border-style: solid; border-color: var(--green); background: var(--green-pale); cursor: default; }

/* ============================================================
   Tables (admin)
   ============================================================ */
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--faint); padding: 12px 14px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.tbl td { padding: 14px 14px; border-bottom: 1px solid var(--border-soft); color: var(--text); vertical-align: middle; }
.tbl tbody tr { transition: background .14s; cursor: pointer; }
.tbl tbody tr:hover { background: var(--bg-2); }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl .td-strong { font-weight: 600; color: var(--title); }
.tbl .td-id { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--muted); }

/* ============================================================
   Misc utilities
   ============================================================ */
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.between { justify-content: space-between; }
.center { align-items: center; justify-content: center; }
.wrap { flex-wrap: wrap; }
.grow { flex: 1; }
.gap-4 { gap: 4px; } .gap-6 { gap: 6px; } .gap-8 { gap: 8px; } .gap-10 { gap: 10px; }
.gap-12 { gap: 12px; } .gap-14 { gap: 14px; } .gap-16 { gap: 16px; } .gap-20 { gap: 20px; } .gap-24 { gap: 24px; }
.divider { height: 1px; background: var(--border-soft); }
.hr { border: none; border-top: 1px solid var(--border-soft); margin: 0; }

.kpi { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.avail-leg { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; color: var(--muted); }
.avail-leg .row { min-width: 0; }

/* progress bar / gauge */
.gauge { height: 9px; border-radius: 100px; background: var(--bg-3); overflow: hidden; display: flex; }
.gauge span { display: block; height: 100%; transition: width .5s var(--ease); }
.gauge .seg-paid { background: var(--green); }
.gauge .seg-reserved { background: #ffd24d; }
.gauge .seg-blocked { background: var(--tag-slate-tx); }

.scrollbar-thin::-webkit-scrollbar { width: 8px; height: 8px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #d4d9dd; border-radius: 8px; }
.scrollbar-thin::-webkit-scrollbar-track { background: transparent; }

/* modal */
.modal-overlay {
  position: absolute; inset: 0; background: rgba(45,52,54,.42);
  display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 100;
  animation: fade .2s ease;
}
.modal {
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  max-width: 440px; width: 100%; padding: 26px; animation: rise .26s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* empty state */
.empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 48px 24px; text-align: center; color: var(--muted);
}
.empty-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--faint); }

/* skeleton loading */
.skel { background: linear-gradient(90deg, var(--bg-3) 25%, #e9edef 50%, var(--bg-3) 75%); background-size: 200% 100%; animation: shimmer 1.3s infinite; border-radius: 6px; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* spinner */
.spinner { width: 22px; height: 22px; border: 2.5px solid var(--green-pale); border-top-color: var(--green); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Cases à cocher & radios aux couleurs La Rez ---------- */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--green);
}
