/* Shared Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 26px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #525252;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}
.navbar-links a:hover {
  color: #171717;
  background: #f5f5f5;
}
.navbar-links a.active {
  color: #171717;
  background: #f5f5f5;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.navbar-btn-ghost {
  color: #525252;
  background: transparent;
}
.navbar-btn-ghost:hover {
  color: #171717;
  background: #f5f5f5;
}
.navbar-btn-primary {
  color: #fff;
  background: #171717;
}
.navbar-btn-primary:hover {
  background: #404040;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .navbar-btn-ghost {
    display: none;
  }
}
