﻿/* Para navegadores WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #072955;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #ffffff;
    }

/* Eliminar flechas/botones de scroll */
::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

/* Para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #072955 #ffffff;
}
