/* ══════════════════════════════════════════
   SCROLLBARS — Univers des Livres
══════════════════════════════════════════ */

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(22,163,74,.25) transparent;
}
*::-webkit-scrollbar { width: 5px; height: 5px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(22,163,74,.25);
  border-radius: 100px;
}
*::-webkit-scrollbar-thumb:hover { background: #16a34a; }
*::-webkit-scrollbar-corner { background: transparent; }

/* ── Admin sidebar ── */
.sidebar-nav {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
}
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.15);
  border-radius: 100px;
}
.sidebar-nav::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.3); }

/* ── Feed tabs (horizontal) — caché ── */
.feed-tabs { scrollbar-width: none; }
.feed-tabs::-webkit-scrollbar { display: none; }
