#header {
  margin: 10px;
  height: 75px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

#nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-btn {
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #185F44;
  color: #333;
  /*border: none;*/
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #31936E;
}

#language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

#language-switcher button {
  width: 36px;
  height: 36px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #185F44;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

#language-switcher button:hover {
  background: #31936E;
}
