/* ============================================================
   DESIGN SYSTEM — Outil de management d'agence
   Base visuelle unique et réutilisable pour tous les modules.
   Sobre, moderne, beaucoup d'espace, pas d'effets inutiles.
   ============================================================ */

:root {
  /* --- Neutres --- */
  --gris-000: #ffffff;
  --gris-025: #fafbfc;
  --gris-050: #f5f6f8;
  --gris-100: #eceef1;
  --gris-200: #dfe2e7;
  --gris-300: #c8cdd5;
  --gris-400: #9aa2b1;
  --gris-500: #717889;
  --gris-600: #565d6d;
  --gris-700: #3d4250;
  --gris-800: #262a35;
  --gris-900: #14161c;

  /* --- Couleur d'accent, utilisée avec parcimonie --- */
  --accent: #4650e6;
  --accent-hover: #3a43cf;
  --accent-doux: #eef0fd;
  --accent-doux-texte: #4045b0;

  /* --- États --- */
  --succes: #158a53;
  --succes-doux: #e8f7ef;
  --alerte: #b3760a;
  --alerte-doux: #fdf3e0;
  --danger: #c73333;
  --danger-doux: #fceeee;

  /* --- Rôles --- */
  --role-proprietaire-fond: #eceef1;
  --role-proprietaire-texte: #262a35;
  --role-manager-fond: #eef0fd;
  --role-manager-texte: #4045b0;
  --role-qa-fond: #e5f6f4;
  --role-qa-texte: #0f7268;
  --role-chatteur-fond: #f5f6f8;
  --role-chatteur-texte: #565d6d;

  /* --- Fond de page vs surfaces --- */
  --fond-page: var(--gris-025);
  --surface: var(--gris-000);
  --bordure: var(--gris-100);
  --bordure-forte: var(--gris-200);
  --texte: var(--gris-900);
  --texte-doux: var(--gris-500);
  --texte-faible: var(--gris-400);

  /* --- Typo --- */
  --police: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* --- Rayons / ombres / rythme --- */
  --rayon-sm: 7px;
  --rayon-md: 10px;
  --rayon-lg: 16px;
  --rayon-pill: 999px;
  --ombre-sm: 0 1px 2px rgba(20, 22, 28, 0.05);
  --ombre-md: 0 8px 24px rgba(20, 22, 28, 0.08);
  --ombre-flottante: 0 12px 32px rgba(20, 22, 28, 0.14);

  --largeur-sidebar: 248px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--police);
  background: var(--fond-page);
  color: var(--texte);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; font-weight: 650; letter-spacing: -0.01em; color: var(--texte); }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.1rem; }
h3 { font-size: 0.95rem; }

p { margin: 0 0 0.75rem; }
p:last-child { margin-bottom: 0; }

.icone { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ============================================================
   TEXTES UTILITAIRES
   ============================================================ */

.texte-doux { color: var(--texte-doux); }
.texte-faible { color: var(--texte-faible); }
.texte-sm { font-size: 0.85rem; }
.texte-centre { text-align: center; }

/* ============================================================
   CARTES
   ============================================================ */

.carte {
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-lg);
  padding: 1.75rem;
  box-shadow: var(--ombre-sm);
}

.carte + .carte { margin-top: 1.25rem; }

.carte-entete {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.carte-entete h2 { margin-bottom: 0.2rem; }

.grille-cartes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   BOUTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--rayon-md);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primaire { background: var(--gris-900); color: var(--gris-000); }
.btn-primaire:hover { background: var(--gris-800); }

.btn-secondaire { background: var(--surface); color: var(--texte); border-color: var(--bordure-forte); }
.btn-secondaire:hover { background: var(--gris-050); }

.btn-danger { background: var(--danger); color: var(--gris-000); }
.btn-danger:hover { background: #a82727; }

.btn-fantome { background: transparent; color: var(--texte-doux); border-color: transparent; }
.btn-fantome:hover { background: var(--gris-050); color: var(--texte); }

.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
.btn-bloc { width: 100%; }

.groupe-boutons { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================================================
   FORMULAIRES
   ============================================================ */

form { display: flex; flex-direction: column; gap: 1.1rem; }
.champ-formulaire { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texte);
}

input[type="text"], input[type="password"], input[type="email"], select, textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--bordure-forte);
  border-radius: var(--rayon-md);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--texte);
  background: var(--surface);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-doux);
}

textarea { resize: vertical; min-height: 4.5rem; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23717889' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.25rem;
}

form ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
form ul li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
input[type="radio"], input[type="checkbox"] { width: auto; accent-color: var(--gris-900); }

.champ-erreur { color: var(--danger); font-size: 0.8rem; }
.champ-aide { color: var(--texte-doux); font-size: 0.8rem; }

.formulaire-large { max-width: 460px; }

/* ============================================================
   BADGES (rôles, statuts)
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--rayon-pill);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.6;
  white-space: nowrap;
}

.badge-role-PROPRIETAIRE { background: var(--role-proprietaire-fond); color: var(--role-proprietaire-texte); }
.badge-role-MANAGER { background: var(--role-manager-fond); color: var(--role-manager-texte); }
.badge-role-TEAM_LEADER_QA { background: var(--role-qa-fond); color: var(--role-qa-texte); }
.badge-role-CHATTEUR { background: var(--role-chatteur-fond); color: var(--role-chatteur-texte); }

.badge-succes { background: var(--succes-doux); color: var(--succes); }
.badge-alerte { background: var(--alerte-doux); color: var(--alerte); }
.badge-danger { background: var(--danger-doux); color: var(--danger); }
.badge-neutre { background: var(--gris-100); color: var(--texte-doux); }
.badge-info { background: var(--accent-doux); color: var(--accent-doux-texte); }

.point-statut { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============================================================
   TABLEAUX
   ============================================================ */

.tableau-conteneur { overflow-x: auto; margin: -0.25rem -0.25rem 0; }

table.tableau { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

.tableau thead th {
  text-align: left;
  padding: 0.6rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--texte-faible);
  border-bottom: 1px solid var(--bordure);
  white-space: nowrap;
}

.tableau tbody td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--bordure);
  vertical-align: middle;
}

.tableau tbody tr:last-child td { border-bottom: none; }
.tableau tbody tr:hover { background: var(--gris-025); }
.tableau .cellule-discrete { color: var(--texte-doux); }
.lien-tableau { color: var(--accent); font-weight: 600; }
.lien-tableau:hover { color: var(--accent-hover); }

/* ============================================================
   AVATAR / MONOGRAMME
   ============================================================ */

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gris-800);
  color: var(--gris-000);
  font-weight: 650;
  flex-shrink: 0;
  line-height: 1;
}
.avatar-sm { width: 28px; height: 28px; font-size: 0.72rem; }
.avatar-md { width: 38px; height: 38px; font-size: 0.9rem; }
.avatar-lg { width: 56px; height: 56px; font-size: 1.3rem; }

.ligne-personne { display: flex; align-items: center; gap: 0.7rem; }
.ligne-personne .nom { font-weight: 600; color: var(--texte); }
.ligne-personne .sous-info { font-size: 0.78rem; color: var(--texte-doux); }

/* ============================================================
   MESSAGES / BANNIÈRES
   ============================================================ */

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: var(--rayon-md);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.message .icone { margin-top: 0.05rem; }
.message-success { background: var(--succes-doux); color: var(--succes); }
.message-error { background: var(--danger-doux); color: var(--danger); }
.message-warning, .encadre-avertissement {
  background: var(--alerte-doux); color: var(--alerte);
  border-radius: var(--rayon-md); padding: 0.85rem 1rem; font-size: 0.875rem;
  display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 1.25rem;
}
.message-info {
  background: var(--gris-050); color: var(--texte-doux);
}

/* ============================================================
   ÉTATS VIDES
   ============================================================ */

.etat-vide {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--texte-doux);
}
.etat-vide .icone { color: var(--texte-faible); margin-bottom: 0.75rem; }
.etat-vide p { font-size: 0.9rem; }

/* ============================================================
   MOT DE PASSE TEMPORAIRE / VALEURS À COPIER
   ============================================================ */

.valeur-a-copier {
  font-family: "SF Mono", "Menlo", monospace;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  background: var(--gris-050);
  border: 1px solid var(--bordure);
  padding: 0.6rem 1rem;
  border-radius: var(--rayon-md);
  display: inline-block;
}

/* ============================================================
   MISE EN PAGE — CONNEXION (aucune nav)
   ============================================================ */

.ecran-connexion {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 2rem;
}
.marque-connexion { display: flex; align-items: center; gap: 0.6rem; font-weight: 650; font-size: 1.05rem; }
.marque-pastille {
  width: 32px; height: 32px; border-radius: 9px; background: var(--gris-900);
  color: white; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700;
}
.carte-connexion { width: 100%; max-width: 380px; }
.pied-connexion { color: var(--texte-faible); font-size: 0.8rem; }

/* ============================================================
   MISE EN PAGE — ADMIN (sidebar)
   ============================================================ */

.app-shell { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--largeur-sidebar);
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--bordure);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-marque {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.25rem 1rem;
}
.sidebar-marque .marque-pastille { width: 30px; height: 30px; border-radius: 8px; font-size: 0.85rem; }
.sidebar-marque .nom-agence { font-weight: 650; font-size: 0.92rem; color: var(--texte); }
.sidebar-marque .role-connecte { font-size: 0.72rem; color: var(--texte-faible); }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 0.5rem 0.75rem; display: flex; flex-direction: column; gap: 0.15rem; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--rayon-md);
  font-size: 0.87rem;
  font-weight: 550;
  color: var(--texte-doux);
  cursor: pointer;
  position: relative;
}
.nav-item .icone { color: var(--texte-faible); }
.nav-item:hover { background: var(--gris-050); color: var(--texte); }
.nav-item:hover .icone { color: var(--texte-doux); }

.nav-item-actif { background: var(--accent-doux); color: var(--accent-doux-texte); }
.nav-item-actif .icone { color: var(--accent); }
.nav-item-actif:hover { background: var(--accent-doux); color: var(--accent-doux-texte); }

.nav-item-verrouille { color: var(--texte-faible); cursor: default; }
.nav-item-verrouille:hover { background: transparent; color: var(--texte-faible); }
.nav-item-verrouille .icone { color: var(--gris-300); }
.nav-item-verrouille:hover .icone { color: var(--gris-300); }

.etiquette-bientot {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 650;
  color: var(--texte-faible);
  background: var(--gris-050);
  border: 1px solid var(--bordure);
  padding: 0.08rem 0.4rem;
  border-radius: var(--rayon-pill);
}

.sidebar-pied { border-top: 1px solid var(--bordure); padding: 0.85rem; }

.sidebar-utilisateur { display: flex; align-items: center; gap: 0.65rem; padding: 0.4rem; border-radius: var(--rayon-md); }
.sidebar-utilisateur .nom { font-size: 0.85rem; font-weight: 600; color: var(--texte); line-height: 1.25; }
.sidebar-utilisateur .role { font-size: 0.74rem; color: var(--texte-faible); }
.sidebar-utilisateur-infos { flex: 1; min-width: 0; }
.sidebar-utilisateur-infos .nom { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.sidebar-actions { display: flex; gap: 0.3rem; margin-top: 0.5rem; }
.sidebar-actions a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.45rem; border-radius: var(--rayon-sm); font-size: 0.76rem; font-weight: 600;
  color: var(--texte-doux); border: 1px solid var(--bordure);
}
.sidebar-actions a:hover { background: var(--gris-050); color: var(--texte); }

.app-corps { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--bordure);
  position: sticky;
  top: 0;
  z-index: 20;
}
.bouton-menu-mobile {
  background: none; border: 1px solid var(--bordure-forte); border-radius: var(--rayon-sm);
  padding: 0.4rem 0.55rem; color: var(--texte); cursor: pointer;
}

.contenu-principal { flex: 1; padding: 2.25rem 2.5rem 3.5rem; max-width: 1080px; width: 100%; }

.entete-page { margin-bottom: 1.75rem; }
.entete-page .fil-ariane { font-size: 0.8rem; color: var(--texte-faible); margin-bottom: 0.35rem; }
.entete-page-ligne { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.entete-page p.sous-titre { color: var(--texte-doux); margin-top: 0.35rem; font-size: 0.9rem; }

/* ============================================================
   MISE EN PAGE — CHATTEUR (minimale)
   ============================================================ */

.entete-chatteur {
  background: var(--surface);
  border-bottom: 1px solid var(--bordure);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}
.onglets-chatteur {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--bordure);
  overflow-x: auto;
}
.onglet-chatteur {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 0.9rem; font-size: 0.85rem; font-weight: 600;
  color: var(--texte-faible); border-bottom: 2px solid transparent; white-space: nowrap;
}
.onglet-chatteur-actif { color: var(--texte); border-bottom-color: var(--gris-900); }
.onglet-chatteur-verrouille { color: var(--gris-300); }

.contenu-chatteur { max-width: 640px; margin: 0 auto; width: 100%; padding: 2rem 1.25rem 3.5rem; }

.menu-compte { position: relative; }
.menu-compte-bouton {
  display: flex; align-items: center; gap: 0.5rem; background: none; border: none; cursor: pointer;
  padding: 0.3rem; border-radius: var(--rayon-md); font-family: inherit;
}
.menu-compte-bouton:hover { background: var(--gris-050); }
.menu-compte-liste {
  position: absolute; right: 0; top: calc(100% + 0.4rem); background: var(--surface);
  border: 1px solid var(--bordure); border-radius: var(--rayon-md); box-shadow: var(--ombre-md);
  min-width: 190px; padding: 0.4rem; display: none; z-index: 30;
}
.menu-compte.ouvert .menu-compte-liste { display: block; }
.menu-compte-liste a {
  display: flex; align-items: center; gap: 0.55rem; padding: 0.5rem 0.6rem; border-radius: var(--rayon-sm);
  font-size: 0.85rem; color: var(--texte);
}
.menu-compte-liste a:hover { background: var(--gris-050); }

/* ============================================================
   TABLEAU DE BORD — cartes à venir / verrouillées
   ============================================================ */

.carte-a-venir {
  border: 1px dashed var(--bordure-forte);
  border-radius: var(--rayon-lg);
  padding: 1.5rem;
  background: var(--gris-025);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.carte-a-venir .icone { color: var(--texte-faible); }
.carte-a-venir h3 { color: var(--texte-doux); margin-bottom: 0.2rem; }
.carte-a-venir p { color: var(--texte-faible); font-size: 0.83rem; }

.carte-statistique { display: flex; flex-direction: column; gap: 0.3rem; }
.carte-statistique .valeur { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.carte-statistique .libelle { font-size: 0.82rem; color: var(--texte-doux); }

/* ============================================================
   PLANNING — grille hebdomadaire
   ============================================================ */

.planning-entete-semaine {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.planning-nav-semaine { display: flex; align-items: center; gap: 0.6rem; }
.planning-nav-semaine .libelle-semaine { font-weight: 650; min-width: 210px; text-align: center; }

.grille-planning {
  display: grid;
  grid-template-columns: 138px repeat(7, minmax(116px, 1fr));
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  overflow-x: auto;
}

.grille-planning-cellule {
  border-bottom: 1px solid var(--bordure);
  border-right: 1px solid var(--bordure);
  padding: 0.6rem;
  min-height: 3.5rem;
}
.grille-planning-cellule:last-child { border-right: none; }

.grille-planning-entete-coin { background: var(--gris-025); }
.grille-planning-entete-jour {
  background: var(--gris-025);
  text-align: center;
}
.grille-planning-entete-jour .nom-jour { font-size: 0.72rem; font-weight: 650; text-transform: uppercase; letter-spacing: 0.03em; color: var(--texte-faible); }
.grille-planning-entete-jour .num-jour { font-size: 1rem; font-weight: 650; color: var(--texte); }
.grille-planning-entete-jour.jour-courant { background: var(--accent-doux); }
.grille-planning-entete-jour.jour-courant .num-jour,
.grille-planning-entete-jour.jour-courant .nom-jour { color: var(--accent-doux-texte); }

.grille-planning-personne { display: flex; align-items: center; gap: 0.5rem; background: var(--gris-025); }
.grille-planning-personne .nom { font-size: 0.82rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.grille-planning-jour.jour-courant { background: #fbfbff; }

.bloc-shift {
  display: block;
  background: var(--surface);
  border: 1px solid var(--bordure-forte);
  border-left: 3px solid var(--gris-400);
  border-radius: var(--rayon-sm);
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  line-height: 1.4;
}
.bloc-shift:last-child { margin-bottom: 0; }
.bloc-shift:hover { background: var(--gris-050); }
.bloc-shift .heures { font-weight: 650; color: var(--texte); }
.bloc-shift .assignations-mini { color: var(--texte-doux); }
.bloc-shift .note-mini { color: var(--texte-faible); font-style: italic; }

.bloc-shift-couvert { border-left-color: var(--succes); }
.bloc-shift-en-cours { border-left-color: var(--accent); }
.bloc-shift-partiel { border-left-color: var(--alerte); }
.bloc-shift-non-couvert { border-left-color: var(--danger); }
.bloc-shift-a-risque { background: var(--danger-doux); }

.etiquette-mini {
  display: inline-block; font-size: 0.63rem; font-weight: 650; padding: 0.03rem 0.35rem;
  border-radius: var(--rayon-pill); background: var(--gris-100); color: var(--texte-doux); margin-left: 0.25rem;
}

/* Planning V2, étape 4 : grille desktop personne × jour, jours empilés
   sur mobile — mêmes données, deux présentations. Bascule en CSS pur. */
.planning-vue-mobile { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .sidebar {
    position: fixed;
    left: 0; top: 0;
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.18s ease;
    box-shadow: var(--ombre-flottante);
  }
  .app-shell.sidebar-ouverte .sidebar { transform: translateX(0); }
  .voile-sidebar {
    display: none;
    position: fixed; inset: 0; background: rgba(20, 22, 28, 0.35); z-index: 30;
  }
  .app-shell.sidebar-ouverte .voile-sidebar { display: block; }
  .topbar-mobile { display: flex; }
  .contenu-principal { padding: 1.5rem 1.25rem 3rem; }
}

@media (max-width: 640px) {
  .carte { padding: 1.25rem; border-radius: var(--rayon-md); }
  .entete-page-ligne { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .planning-vue-desktop { display: none; }
  .planning-vue-mobile { display: block; }
}
