/* Import Google Font handled in HTML for performance, applying here */
body {
    font-family: 'Outfit', sans-serif;
}

/* Alpine.js Cloak - Hides elements until Alpine is fully loaded */
[x-cloak] {
    display: none !important;
}

/* Optional: Smooth Scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Optional: Custom scrollbar to match the blue theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a; /* Tailwind blue-900 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #172554; /* Tailwind blue-950 */
}