/* ================================================================
 * ProVsup Design System — pv-debug.css
 * Page de débogage des composants UI (modales, etc.)
 * Visible uniquement pour les admins (user.rang == 0).
 * ================================================================ */


/* ── Grille de cartes ───────────────────────────────────────────── */

.pv-theme .pv-debug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  padding: 24px;
}


/* ── Carte ──────────────────────────────────────────────────────── */

.pv-theme .pv-debug-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.pv-theme .pv-debug-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pv-theme .pv-debug-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: none;
}

.pv-theme .pv-debug-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.3;
}

.pv-theme .pv-debug-card-file {
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: 1px;
}

.pv-theme .pv-debug-card-desc {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font-ui);
  line-height: 1.55;
  flex: 1;
}

.pv-theme .pv-debug-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}


/* ── Badges ─────────────────────────────────────────────────────── */

.pv-theme .pv-debug-badge {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

.pv-theme .pv-debug-badge--core {
  background: var(--accent-soft);
  color: var(--accent);
}

.pv-theme .pv-debug-badge--spe {
  background: var(--warn-soft);
  color: var(--warn);
}

.pv-theme .pv-debug-badge--simple {
  background: var(--ok-soft);
  color: var(--ok);
}


/* ── Icône danger/warn dans les cartes ──────────────────────────── */

.pv-theme .pv-debug-card-icon--stop {
  background: var(--stop-soft);
  color: var(--stop);
}

.pv-theme .pv-debug-card-icon--warn {
  background: var(--warn-soft);
  color: var(--warn);
}
