/* --- REGLAS GLOBALES --- */

html {
    scroll-behavior: smooth; /* Desplazamiento suave al hacer clic en enlaces */
}

body {
    -webkit-font-smoothing: antialiased; /* Hace que el texto se vea más nítido */
}

/* --- SCROLLBAR PERSONALIZADA (Estilo Aurora) --- */
::-webkit-scrollbar {
    width: 10px;
}

/* El camino de la barra (el fondo) */
::-webkit-scrollbar-track {
    background: #fdfbf7; 
}

/* La barra en sí (el "thumb") */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d8b4fe, #f9a8d4); /* Morado a Rosa */
    border-radius: 5px;
    border: 2px solid #fdfbf7;
}

::-webkit-scrollbar-thumb:hover {
    background: #c084fc; 
}