/* Navbar-specific styles */
#main-navbar {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent); /* Defined in header or Tailwind config */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.search-input:focus {
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
}
