body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* Tailwind gray-100 */
}

.modal {
    background-color: rgba(0,0,0,0.5);
}

/* Custom scrollbar for a cleaner look if needed */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav-link.active {
     font-weight: 600; /* Makes the text semibold */
     border-bottom: 2px solid white; /* Adds a clean 2px white underline */

     /* We remove the background color change to keep it subtle */
     background-color: transparent; 
     color: white;
}

/* For the MOBILE menu (a darker background is still best here for stacked links) */
.mobile-nav-link.active {
    background-color: #0369a1; /* A slightly darker blue (sky-700) */
    font-weight: 600;
}