/* === Ascenseurs adaptatifs clair / sombre === */

/* Chrome, Edge, Safari */
::-webkit-scrollbar             { width: 6px; height: 6px; }
::-webkit-scrollbar-track       { background: transparent; }
::-webkit-scrollbar-thumb       { background: #cbd5e1; border-radius: 9999px; } /* slate-300 */
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }                        /* slate-400 */

html.dark ::-webkit-scrollbar-thumb       { background: #52525b; }              /* zinc-600 */
html.dark ::-webkit-scrollbar-thumb:hover { background: #71717a; }              /* zinc-500 */

/* Firefox + Chrome 121+ */
:root      { scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent; }
html.dark  { scrollbar-color: #52525b transparent; }
