/* Custom Styles for Dr. Bommakanti's Website */

/* Body font */
body {
    font-family: 'Inter', sans-serif;
}

/* Navigation active state */
.nav-link.active {
    color: #3b82f6; /* blue-500 */
    font-weight: 600;
}

/* Filter button active state */
.filter-btn.active {
    background-color: #2563eb !important; /* blue-600 */
    color: white !important;
}

/* Smooth fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}