/* ═══════════════════════════════════════════════════════════════════════════════
   10. SCROLLBARS PERSONALIZADOS
   Estilos para las barras de desplazamiento (WebKit)
   ═══════════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #111b21;
}

::-webkit-scrollbar-thumb {
    background: #313d45;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b4a54;
}

