/* Import the Alan Sans font */
@import url('https://fonts.googleapis.com/css2?family=Alan%20Sans:wght@400;700&display=swap');

body {
    /* 🌟 Ensure quotes are used here as well */
    font-family: 'Alan Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom minimal scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}