.nav-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
  border-radius: 100px;
  width: fit-content;
}

.nav-toggle {
  display: flex;
  gap: 3px;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px;
  border-radius: 100px;
}

.nav-toggle a {
  text-decoration: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 13px;
  white-space: nowrap;
}

.nav-toggle a.active {
  background: #fff;
  color: #000;
}

.nav-toggle a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}
