.app-header-nav {
  position: relative;
  margin-left: 2rem;
  height: 100%;
}
@media (max-width: 1024px) {
  .app-header-nav {
    display: none;
  }
}
.app-header-nav > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
}
.app-header-nav > ul > li {
  position: relative;
  height: 100%;
  margin-right: 0.5rem;
}
.app-header-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
}
.app-header-nav > ul > li > a .app-header-nav-more {
  color: inherit;
  font-size: 1rem;
  margin-left: 0.4rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.app-header-nav > ul > li > a:hover {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.05);
}
.app-header-nav > ul > li > a:hover .app-header-nav-more {
  transform: rotate(180deg);
}
.app-header-nav > ul > li.active > a {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom-color: var(--color-primary);
}
/* Modern Dropdown */
.app-header-nav-child {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  min-width: 200px;
  padding: 0.5rem;
  margin: 0;
  /* Updated from legacy */
  /* Glassmorphism Card */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform-origin: top left;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  /* Prevent clicks when hidden */
  /* Remove old override logic for dark mode if relying on CSS vars */
}
.app-header-nav-child > li {
  margin-bottom: 2px;
}
.app-header-nav-child > li:last-child {
  margin-bottom: 0;
}
.app-header-nav-child > li > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--color-text-main);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.app-header-nav-child > li > a:hover {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(2px);
}
.app-header-nav-child > li.active > a {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.05);
  font-weight: 600;
}
/* Hover State to Show Dropdown */
.app-header-nav > ul > li:hover .app-header-nav-child, .app-header-nav-child:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
/*# sourceMappingURL=db2497f03b48ab2cbebfcffbe1c3ace799d60d39.header-nav.scss.map */
