.navbar {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar a:hover {
  color: #007bff;
}

.logo {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.navbar {
  background: #ffffff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #007bff;
}

.logo {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

