/* ═══════════════════════════════════════════════
   CUTZ DASHBOARD PRO — chrome + composants
   Ne dépend que des tokens CSS racines (cf. cutz_tokens.css à la racine du projet)
   et d'une duplication locale ci-dessous pour ne pas casser si le fichier
   tokens n'est pas accessible depuis /pro.
═══════════════════════════════════════════════ */

:root {
  /* tokens canoniques (miroir local de cutz_tokens.css) */
  --cutz-primary:        #03DAC5;
  --cutz-primary-hover:  #00B3A4;
  --cutz-primary-soft:   rgba(3, 218, 197, 0.10);
  --cutz-secondary:      #7C3AED;
  --cutz-accent:         #FF6B35;
  --cutz-accent-hover:   #E85D20;
  --cutz-success:        #10B981;
  --cutz-warning:        #F59E0B;
  --cutz-error:          #EF4444;
  --cutz-info:           #3B82F6;

  /* mode light pour le dashboard pro (différent de l'app mobile en dark) */
  --pro-bg:              #F4F5F7;
  --pro-surface:         #FFFFFF;
  --pro-surface-2:       #F9FAFB;
  --pro-border:          #E5E7EB;
  --pro-border-strong:   #D1D5DB;
  --pro-text:            #111827;
  --pro-text-muted:      #6B7280;
  --pro-text-subtle:     #9CA3AF;

  /* sidebar slate (cohérent admin chrome) */
  --pro-sidebar-bg:      #1F2937;
  --pro-sidebar-bg-2:    #111827;
  --pro-sidebar-text:    #D1D5DB;
  --pro-sidebar-text-active: #FFFFFF;
  --pro-sidebar-hover:   rgba(255,255,255,0.06);
  --pro-sidebar-active-bg: rgba(255,255,255,0.04);

  --pro-radius-sm: 8px;
  --pro-radius-md: 12px;
  --pro-radius-lg: 16px;

  --pro-shadow-1: 0 1px 2px rgba(0,0,0,0.04);
  --pro-shadow-2: 0 4px 12px rgba(0,0,0,0.06);

  --pro-sidebar-w: 248px;
  --pro-topbar-h:  64px;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 14px;
  color: var(--pro-text);
  background: var(--pro-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pro-text); text-decoration: none; }
a:hover { color: var(--cutz-accent); }

button { font-family: inherit; }

/* ───── LAYOUT ───── */
.pro-app {
  display: grid;
  grid-template-columns: var(--pro-sidebar-w) 1fr;
  grid-template-rows: var(--pro-topbar-h) 1fr;
  grid-template-areas:
    "sidebar topbar"
    "sidebar main";
  min-height: 100vh;
}

.pro-sidebar {
  grid-area: sidebar;
  background: var(--pro-sidebar-bg);
  color: var(--pro-sidebar-text);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.pro-topbar {
  grid-area: topbar;
  background: var(--pro-surface);
  border-bottom: 1px solid var(--pro-border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.pro-main {
  grid-area: main;
  padding: 24px 32px 64px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .pro-app {
    grid-template-columns: 72px 1fr;
  }
  .pro-sidebar { padding: 0; }
  .pro-sidebar .nav-label,
  .pro-sidebar .brand-text,
  .pro-sidebar .nav-section-title { display: none; }
  .pro-sidebar .nav-item { justify-content: center; padding: 14px 0; }
  .pro-main { padding: 16px; }
}

@media (max-width: 720px) {
  .pro-app { grid-template-columns: 1fr; grid-template-areas: "topbar" "main"; }
  .pro-sidebar { display: none; }
}

/* ───── SIDEBAR ───── */
.brand {
  height: var(--pro-topbar-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.brand-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--cutz-accent); color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px;
}
.brand-text {
  font-weight: 700; letter-spacing: 0.06em;
  font-size: 14px; text-transform: uppercase;
  color: white;
}

.nav-section-title {
  padding: 16px 20px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.40);
  font-weight: 700;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--pro-sidebar-text);
  font-size: 14px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.nav-item:hover {
  background: var(--pro-sidebar-hover);
  color: white;
}
.nav-item.is-active {
  background: var(--pro-sidebar-active-bg);
  color: var(--pro-sidebar-text-active);
  border-left-color: var(--cutz-accent);
  font-weight: 600;
}
.nav-item .nav-icon {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  flex-shrink: 0;
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}

/* ───── TOPBAR ───── */
.topbar-title {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}
.topbar-actions {
  display: flex; align-items: center; gap: 12px;
}
.icon-btn {
  width: 38px; height: 38px;
  border-radius: var(--pro-radius-sm);
  background: transparent;
  border: 1px solid var(--pro-border);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--pro-text-muted);
  transition: all 0.12s ease;
}
.icon-btn:hover {
  background: var(--pro-surface-2);
  color: var(--pro-text);
}

.user-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--pro-border);
  cursor: pointer;
  background: white;
}
.user-chip:hover { background: var(--pro-surface-2); }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cutz-accent);
  color: white; font-weight: 700;
  display: grid; place-items: center;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-chip-name { font-size: 13px; font-weight: 500; }

/* ───── CARD / SURFACE ───── */
.card {
  background: var(--pro-surface);
  border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md);
  padding: 20px;
  box-shadow: var(--pro-shadow-1);
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 12px;
}
.card-title { font-size: 15px; font-weight: 600; }
.card-sub { font-size: 12px; color: var(--pro-text-muted); }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--pro-radius-sm);
  border: 1px solid var(--pro-border);
  background: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s ease;
  color: var(--pro-text);
}
.btn:hover { background: var(--pro-surface-2); }
.btn-primary {
  background: var(--cutz-primary);
  color: #00322E;
  border-color: var(--cutz-primary);
  font-weight: 700;
}
.btn-primary:hover { background: var(--cutz-primary-hover); border-color: var(--cutz-primary-hover); }
.btn-accent {
  background: var(--cutz-accent); color: white;
  border-color: var(--cutz-accent); font-weight: 600;
}
.btn-accent:hover { background: var(--cutz-accent-hover); border-color: var(--cutz-accent-hover); }
.btn-ghost {
  background: transparent; border-color: transparent;
}
.btn-ghost:hover { background: var(--pro-surface-2); }
.btn-danger {
  color: var(--cutz-error); border-color: var(--pro-border);
}
.btn-danger:hover { background: rgba(239,68,68,0.06); border-color: var(--cutz-error); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 12px 22px; font-size: 14px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ───── FORM ───── */
.form-row { margin-bottom: 16px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-grid-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
}
@media (max-width: 768px) {
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
}
.label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--pro-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.label-hint {
  text-transform: none; letter-spacing: 0;
  font-weight: 400; color: var(--pro-text-muted);
  margin-left: 6px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--pro-border-strong);
  border-radius: var(--pro-radius-sm);
  background: white;
  font: inherit;
  color: var(--pro-text);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--cutz-primary);
  box-shadow: 0 0 0 3px var(--cutz-primary-soft);
}
.textarea { min-height: 96px; resize: vertical; }
.help { font-size: 12px; color: var(--pro-text-muted); margin-top: 6px; }

/* radio cards (pricing type) */
.radio-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.radio-cards label {
  border: 1.5px solid var(--pro-border-strong);
  border-radius: var(--pro-radius-sm);
  padding: 12px;
  cursor: pointer;
  display: block;
  transition: all 0.12s;
}
.radio-cards input { position: absolute; opacity: 0; }
.radio-cards label:has(input:checked) {
  border-color: var(--cutz-primary);
  background: var(--cutz-primary-soft);
}
.radio-cards .rc-title { font-weight: 700; font-size: 13px; }
.radio-cards .rc-desc { font-size: 11px; color: var(--pro-text-muted); margin-top: 4px; }

/* ───── BADGE / CHIP ───── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-pending  { background: rgba(245,158,11,0.12);  color: #92400E; }
.badge-accept   { background: rgba(3,218,197,0.14);   color: #0F766E; }
.badge-finish   { background: rgba(16,185,129,0.12);  color: #065F46; }
.badge-cancel   { background: rgba(239,68,68,0.10);   color: #991B1B; }
.badge-walkin   { background: rgba(124,58,237,0.10);  color: #5B21B6; }
.badge-quote    { background: rgba(255,107,53,0.10);  color: #9A3412; }

/* ───── KPI cards ───── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .kpi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .kpi-grid { grid-template-columns: 1fr; } }
.kpi {
  background: white;
  border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.kpi-label { font-size: 12px; color: var(--pro-text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.kpi-value { font-size: 26px; font-weight: 800; line-height: 1.1; }
.kpi-delta { font-size: 12px; color: var(--cutz-success); font-weight: 600; }
.kpi-delta.is-down { color: var(--cutz-error); }

/* ───── TABLE ───── */
.table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pro-text-muted);
  border-bottom: 1px solid var(--pro-border);
  background: var(--pro-surface-2);
}
.table td {
  padding: 12px;
  border-bottom: 1px solid var(--pro-border);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table-card { background: white; border: 1px solid var(--pro-border); border-radius: var(--pro-radius-md); overflow: hidden; }

/* ───── EMPTY STATE ───── */
.empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--pro-text-muted);
}
.empty .empty-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.5; }
.empty .empty-title { font-size: 15px; font-weight: 600; color: var(--pro-text); margin-bottom: 4px; }

/* ───── FLASH ───── */
.flash {
  padding: 12px 16px;
  border-radius: var(--pro-radius-sm);
  margin-bottom: 16px;
  font-size: 13px;
  display: flex; gap: 10px; align-items: flex-start;
}
.flash-ok    { background: rgba(16,185,129,0.10); color: #065F46; border: 1px solid rgba(16,185,129,0.25); }
.flash-error { background: rgba(239,68,68,0.08);  color: #991B1B; border: 1px solid rgba(239,68,68,0.20); }
.flash-info  { background: rgba(59,130,246,0.08); color: #1E40AF; border: 1px solid rgba(59,130,246,0.20); }

/* ───── PAGE HEADER ───── */
.page-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.page-title { font-size: 22px; font-weight: 700; line-height: 1.2; }
.page-sub   { font-size: 13px; color: var(--pro-text-muted); margin-top: 4px; }

/* ───── AGENDA ───── */
.agenda-toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.agenda-day {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
  background: white; border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md); overflow: hidden;
}
.agenda-day .timeline {
  border-right: 1px solid var(--pro-border);
  background: var(--pro-surface-2);
}
.agenda-day .hour {
  height: 60px; padding: 6px 10px;
  font-size: 11px; color: var(--pro-text-muted);
  border-bottom: 1px solid var(--pro-border);
}
.agenda-day .lane {
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 59px,
      var(--pro-border) 59px,
      var(--pro-border) 60px
    );
}
.agenda-event {
  position: absolute; left: 8px; right: 8px;
  border-radius: var(--pro-radius-sm);
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--cutz-primary-soft);
  border: 1px solid var(--cutz-primary);
  color: #0F766E;
  cursor: pointer;
}
.agenda-event .ev-sep { opacity: 0.5; margin: 0 2px; }
.agenda-event .ev-title { font-weight: 500; opacity: 0.9; }
.agenda-event.is-pending { background: rgba(245,158,11,0.12); border-color: var(--cutz-warning); color: #92400E; }
.agenda-event.is-cancel  { background: rgba(239,68,68,0.08);  border-color: var(--cutz-error);   color: #991B1B; text-decoration: line-through; opacity: 0.7; }
.agenda-event.is-finish  { background: rgba(16,185,129,0.10); border-color: var(--cutz-success); color: #065F46; }
.agenda-event.is-walkin  { background: rgba(124,58,237,0.08); border-color: var(--cutz-secondary); color: #5B21B6; }
.agenda-event .ev-time { font-weight: 700; }
.agenda-event .ev-title { font-weight: 500; }

/* day view — multi-colonnes (1 par employé) */
.agenda-day-multi {
  background: white;
  border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md);
  overflow: hidden;
}
.agenda-day-multi.is-scroll .agenda-day-multi__header,
.agenda-day-multi.is-scroll .agenda-day-multi__body {
  overflow-x: auto;
}
.agenda-day-multi__header {
  display: grid;
  grid-template-columns: 80px repeat(var(--cols, 3), minmax(140px, 1fr));
  background: var(--pro-surface-2);
  border-bottom: 1px solid var(--pro-border);
}
.agenda-day-multi.is-scroll .agenda-day-multi__header {
  grid-template-columns: 80px repeat(var(--cols, 6), 160px);
}
.agenda-day-multi__corner {
  border-right: 1px solid var(--pro-border);
}
.agenda-day-multi__emp-head {
  padding: 10px 12px;
  border-right: 1px solid var(--pro-border);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.agenda-day-multi__emp-head:last-child { border-right: 0; }
.agenda-day-multi__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cutz-primary-soft);
  color: var(--cutz-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  flex: 0 0 auto;
  object-fit: cover;
  overflow: hidden;
}
.agenda-day-multi__avatar--unassigned {
  background: var(--pro-surface-2);
  color: var(--pro-text-muted);
  border: 1px dashed var(--pro-border);
}
.agenda-day-multi__emp-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agenda-day-multi__body {
  display: grid;
  grid-template-columns: 80px repeat(var(--cols, 3), minmax(140px, 1fr));
}
.agenda-day-multi.is-scroll .agenda-day-multi__body {
  grid-template-columns: 80px repeat(var(--cols, 6), 160px);
}
.agenda-day-multi__timeline {
  border-right: 1px solid var(--pro-border);
  background: var(--pro-surface-2);
}
.agenda-day-multi__timeline .hour {
  height: 60px; padding: 6px 10px;
  font-size: 11px; color: var(--pro-text-muted);
  border-bottom: 1px solid var(--pro-border);
}
.agenda-day-multi__col {
  border-right: 1px solid var(--pro-border);
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 59px,
      var(--pro-border) 59px,
      var(--pro-border) 60px
    );
  cursor: crosshair;
}
.agenda-day-multi__col:last-child { border-right: 0; }
.agenda-day-multi__col .agenda-event {
  cursor: pointer;
}

/* Fallback mobile : sous 900px, on retombe sur une lane unique simulée
   (toutes les colonnes empilées). Pas idéal mais évite l'illisibilité. */
@media (max-width: 900px) {
  .agenda-day-multi__header,
  .agenda-day-multi__body {
    grid-template-columns: 80px 1fr !important;
  }
  .agenda-day-multi__emp-head ~ .agenda-day-multi__emp-head { display: none; }
  .agenda-day-multi__col ~ .agenda-day-multi__col { display: none; }
}

/* week view */
.agenda-week {
  display: grid; grid-template-columns: 60px repeat(7, 1fr); gap: 0;
  background: white; border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md); overflow: hidden;
}
.agenda-week .week-header {
  background: var(--pro-surface-2);
  border-bottom: 1px solid var(--pro-border);
  padding: 10px 8px;
  text-align: center; font-size: 12px; font-weight: 600;
  border-right: 1px solid var(--pro-border);
}
.agenda-week .week-header.is-today {
  color: var(--cutz-accent);
  background: rgba(255,107,53,0.05);
}

/* ───── GRID services ───── */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.svc-card {
  background: white; border: 1px solid var(--pro-border);
  border-radius: var(--pro-radius-md); padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-card-name { font-size: 15px; font-weight: 700; }
.svc-card-cat { font-size: 11px; color: var(--pro-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.svc-card-price { font-size: 18px; font-weight: 800; color: var(--cutz-primary); }
.svc-card-meta { font-size: 12px; color: var(--pro-text-muted); display: flex; gap: 12px; }

/* ───── GALERIE ───── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--pro-radius-sm); border: 1px solid var(--pro-border);
  background: var(--pro-surface-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gal-actions {
  position: absolute; top: 8px; right: 8px;
  display: flex; gap: 6px;
  opacity: 0; transition: opacity 0.12s;
}
.gallery-item:hover .gal-actions { opacity: 1; }
.gallery-item .gal-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7); color: white;
  border: none; cursor: pointer;
  display: grid; place-items: center;
}
.gallery-item .gal-btn:hover { background: var(--cutz-error); }

/* ───── DRAWER (panneau latéral) ───── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.45);
  z-index: 50;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0;
  width: 460px; max-width: 100vw;
  height: 100vh; background: white;
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pro-border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.drawer-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--pro-border);
  display: flex; gap: 8px; justify-content: flex-end;
}

/* ───── LOGIN ───── */
.login-wrap {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: 24px;
}
.login-card {
  width: 100%; max-width: 420px;
  background: white; border-radius: var(--pro-radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}
.login-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.login-brand .brand-logo { width: 40px; height: 40px; font-size: 18px; }
.login-brand .brand-title {
  font-size: 18px; font-weight: 800; letter-spacing: 0.04em;
}
.login-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.login-sub { font-size: 13px; color: var(--pro-text-muted); margin-bottom: 24px; }

/* ───── UTILITAIRES ───── */
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.row-end { display: flex; gap: 8px; justify-content: flex-end; }
.muted { color: var(--pro-text-muted); }
.tiny  { font-size: 11px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.text-center { text-align: center; }
.hidden { display: none !important; }
