.top-navbar {
  background-color: #00b4d8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-height: 60px;
  color: white;
}

.nav-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  height: 40px;
  margin-right: 15px;
}

.nav-links {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 20px 25px;
  font-weight: 500;
  display: block;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-links li.active-dark a {
  background-color: #2a2e35;
}

.nav-links li.active-yellow a {
  background-color: #ffb703;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-select {
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding-right: 10px;
}

.lang-select option {
  color: black;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
}

.accessibility-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: bold;
}

@media (max-width: 1100px) {
  .nav-content-wrapper {
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links li a {
    padding: 14px 18px;
  }
}

@media (max-width: 576px) {
  .nav-left {
    flex-direction: column;
  }

  .nav-logo {
    margin-right: 0;
  }

  .nav-right {
    gap: 12px;
    justify-content: center;
  }
}
