/* 
   Animales Modernization Stylesheet
   Most styling is now handled by Tailwind CSS and inline glassmorphism utilities.
   This file is retained for any global overrides or non-utility styles.
*/

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #2D5A27;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A3728;
}