/* Header Enhancements - Full Height Hover with Animated Underline */
.navbar {
    padding: 0;
}

.nav-container {
    height: 64px;
    display: flex;
    align-items: stretch;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-center {
    gap: 0;
    margin: 0;
}

.nav-center li {
    display: flex;
    align-items: stretch;
}

.nav-right {
    gap: 0.5rem;
    margin: 0;
}

.nav-right li {
    display: flex;
    align-items: center;
}

.nav-center a {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    border-radius: 0;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--primary);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-center a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-center a:hover {
    color: var(--primary);
    background: transparent;
}

.btn-login {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-login:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Fix dropdown z-index to appear above cards */
.filter-card {
    position: relative;
    z-index: 100;
}

.custom-multi-select {
    position: relative;
    z-index: 10000;
}

.custom-multi-select-dropdown {
    z-index: 10001 !important;
}