/* Conteneur principal du sidebar */
#sidebar-admin-wraper {
  position: fixed;
  top: 70px;
  left: 0;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  height: calc(100svh - 70px);
  width: 280px;               /* adapte si besoin */
  background: #fff;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  overscroll-behavior: contain;
}

/* Bloc "Mon compte" */
#sidebar-admin-wraper .pro-my-account-wrap {
  flex: 0 0 auto;
  padding: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

/* Zone scrollable */
#sidebar-admin-wraper .admin-nav {
  flex: 1 1 auto;             /* prend tout l’espace restant */
  overflow-y: auto;           /* SCROLL VERTICAL */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Optionnel : scrollbar propre */
#sidebar-admin-wraper .admin-nav::-webkit-scrollbar {
  width: 6px;
}

#sidebar-admin-wraper .admin-nav::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
