/* Auth section styles */
.auth-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-greeting {
  color: var(--text-color-secondary, #666);
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.logout-btn:hover {
  background-color: var(--bg-hover, #f0f0f0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .auth-section {
    gap: 0.5rem;
  }
  
  .user-greeting {
    display: none; /* Hide greeting on mobile to save space */
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .user-greeting {
    color: #ccc;
  }
  
  .logout-btn:hover {
    background-color: #333;
  }
}