.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1.3;
}

.nav-btn--outline-accent {
  background: transparent;
  border: 1px solid var(--accent, #1a5c4a);
  color: var(--accent, #1a5c4a);
}

.nav-btn--outline-accent:hover {
  background: var(--accent-soft, rgba(26, 92, 74, 0.08));
}

.nav-user-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted, #5c6478);
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
