/* Header Styles */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  z-index: 40;
  background-color: white;
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100vw;
  max-height: 0 !important;
  overflow: hidden !important;
  background-color: white !important;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transition: max-height 0.3s ease !important;
  z-index: 50;
}

.mobile-nav.open {
  max-height: 600px !important;
  overflow-y: auto !important;
}

.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  color: #475569 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
  background-color: white !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav a:hover {
  color: #059669 !important;
  background-color: #f0fdf4 !important;
}

body {
  padding-top: 72px;
}

/* Navigation */
nav ul,
nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  gap: inherit;
}

nav a {
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
}

nav a.active {
  color: #059669;
  background-color: #f0fdf4;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #059669;
  border-radius: 2px;
}
