
/* Apply Roboto font globally */
* {
    font-family: 'Roboto', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f6f7f8;
}
::-webkit-scrollbar-thumb {
    background: #6fe3b4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #41c89a;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
