<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Personnalisation de la barre de dÃ©filement */

/* Barre de dÃ©filement pour Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Barre de dÃ©filement pour Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1e3a8a #f1f1f1;
}

/* Styles spÃ©cifiques pour les Ã©lÃ©ments avec dÃ©filement */
.scrollable-element {
    scrollbar-width: thin;
    scrollbar-color: #1e3a8a #f1f1f1;
}

/* Transition douce pour le survol */
::-webkit-scrollbar-thumb {
    transition: background-color 0.3s ease;
}</pre></body></html>