.gabarit-back {
  display: flex;
  min-height: 100vh;
}

/* ---------------------------------------------------------------- BARRE LATERALE */

.laterale {
  width: 260px;
  flex-shrink: 0;
  background: var(--back-vert-700);
  padding: var(--e24) var(--e16);
  display: flex;
  flex-direction: column;
}

.laterale-marque {
  padding: 0 var(--e8) var(--e24);
}
.logo-svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.laterale-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.laterale-lien {
  display: flex;
  align-items: center;
  gap: var(--e12);
  padding: 11px var(--e12);
  border-radius: var(--r8);
  color: #c9d6cf;
  font-size: var(--t-corps);
}
.laterale-lien:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.laterale-lien-actif {
  background: var(--back-turquoise-500);
  color: #ffffff;
  font-weight: 600;
}
.laterale-puce {
  width: 8px;
  height: 8px;
  border-radius: var(--rond);
  background: var(--back-vert-400);
  flex-shrink: 0;
}
.laterale-lien-actif .laterale-puce {
  background: #ffffff;
}

/* ---------------------------------------------------------------- COLONNE PRINCIPALE */

.principale {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.barre-haute {
  display: flex;
  align-items: center;
  gap: var(--e16);
  padding: var(--e12) var(--e32);
  background: var(--back-surface);
  border-bottom: 1px solid var(--bordure);
}

.recherche-globale {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--e8);
  padding: 0 var(--e12);
  background: var(--back-fond);
  border: 1px solid var(--bordure);
  border-radius: var(--r8);
}
.recherche-icone {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--texte-2);
  border-radius: var(--rond);
  flex-shrink: 0;
}
.recherche-globale input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 0;
  font-family: var(--police);
  font-size: var(--t-petit);
  color: var(--texte-1);
  outline: none;
}
.recherche-globale input::placeholder {
  color: var(--texte-2);
}

.selecteur-site {
  padding: 8px var(--e12);
  border-radius: var(--r8);
  background: var(--back-vert-100);
  color: var(--back-vert-700);
  font-size: var(--t-petit);
  font-weight: 600;
  white-space: nowrap;
}

.compte {
  display: flex;
  align-items: center;
  gap: var(--e12);
}
.compte-avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--rond);
  background: var(--back-turquoise-500);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-petit);
  font-weight: 600;
  flex-shrink: 0;
}
.compte-nom {
  font-size: var(--t-petit);
  font-weight: 600;
  white-space: nowrap;
}
.compte-role {
  font-size: var(--t-legende);
  color: var(--texte-2);
}
.barre-separateur {
  width: 1px;
  height: 28px;
  background: var(--bordure);
  flex-shrink: 0;
}

.contenu {
  flex: 1;
  padding: var(--e32);
  overflow-x: auto;
}

@media (max-width: 900px) {
  .gabarit-back {
    flex-direction: column;
  }
  .laterale {
    width: 100%;
  }
  .contenu {
    padding: var(--e16);
  }
}
