/* ── Scrollbar personnalisée — thème Courseulles Connectée ── */
/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 182, .38);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 119, 182, .62);
}
::-webkit-scrollbar-track {
    background: rgba(0, 119, 182, .05);
    border-radius: 10px;
}
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 119, 182, .38) transparent;
}
