/* ===== Barra de desplazamiento global — paleta corporativa ===== */

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #a9c78c #eef1ea;
}

/* WebKit / Chromium / Edge */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #eef1ea;
}

::-webkit-scrollbar-thumb {
    background: #a9c78c;
    border-radius: 999px;
    /* el borde del color del track deja el thumb "flotando" y más delgado */
    border: 3px solid #eef1ea;
    background-clip: padding-box;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #51a121;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #3d7114;
    }

::-webkit-scrollbar-corner {
    background: #eef1ea;
}
