/* SCROLLBAR GLOBAL DEL SITIO (opcional) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a; /* slate-900 */
}

::-webkit-scrollbar-thumb {
    background: #1e293b; /* slate-800 */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00A651; /* brandGreen */
}

/* SCROLL SOLO PARA EL MODAL LEGAL */
#modalLegalContent::-webkit-scrollbar {
    width: 10px;
}

#modalLegalContent::-webkit-scrollbar-track {
    background: #0f172a; /* igual que tu fondo slate-950 */
}

#modalLegalContent::-webkit-scrollbar-thumb {
    background: #1e293b; /* slate-800 */
    border-radius: 10px;
}

#modalLegalContent::-webkit-scrollbar-thumb:hover {
    background: #00A651; /* brandGreen */
}

/* Para Firefox */
#modalLegalContent {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #0f172a;
}
