@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.nav-bg {
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
}
#body-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#mainContent {
    background-color: #ffffffcc;
}
.nav-backdrop {
    background-color: #ffffff78;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar for better appearance */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #f3f4f6;
}