/* 🦞 Unified Navigation Component
 * Consistent across all dashboard pages
 */

.nav-unified {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-primary);
}

.nav-unified a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 200ms ease;
  white-space: nowrap;
}

.nav-unified a:hover {
  color: var(--text-primary);
}

.nav-unified a.active {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Emoji styling - ensure colorful rendering */
.nav-unified .nav-emoji {
  font-size: 1.1em;
  line-height: 1;
  font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

/* Status indicator dot */
.nav-unified .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Custom face icon in nav */
.nav-face {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 2px;
}
