/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Anchor scroll offset for sticky header (74px + 1rem padding = ~90px) */
*[id] {
  scroll-margin-top: 3.5rem;
}

/* Global Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f1419;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo:hover {
  color: #00d084;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: #0f8;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  color: #00d084;
}





.simple-status-messages {
  top: 10px;
}