.navbar-logo {
  height: 40px; /* This is the key! Adjust this value as needed. */
  width: auto;  /* Ensures the logo doesn't get distorted. */
}

/* CSS */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 2px solid #eaeaea;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  height: 40px; /* This is the key! Adjust this value as needed. */
  width: auto;  /* Ensures the logo doesn't get distorted. */
}

.logo img {
  height: 30px;
  margin-right: 8px;
}

.logo .highlight {
  color: #2a9d55; /* Grid green */
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
  color: #2a9d55; /* Hover green */
  border-bottom: 2px solid #2a9d55;
}

.nav-links a.active {
  color: #2a9d55;
  border-bottom: 2px solid #2a9d55;
}
