.nav-bar {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 12px;
}

.nav-bar button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: #cdcdcd;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  justify-content: center;
}

.nav-bar-icons {
  display: flex;
  width: 70%;
  align-items: center;
}

.nav-bar button:hover {
  background-color: #091931;
  color: #ffffff;
}

.nav-bar button:hover img {
  filter: brightness(0) invert(1);
}

.nav-bar a.menu-links {
  text-decoration: none;
  color: inherit;
}

.nav-bar-button-active {
  background-color: #091931 !important;
  color: #ffffff;
  font-weight: 600 !important;
}

.nav-bar-button-active img {
  filter: brightness(0) invert(1);
}

/* Mobile active */
.nav-bar-button-active-a {
  background-color: #091931 !important;
  color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}

.nav-bar-button-active-a:hover {
  background-color: #091931 !important;
  cursor: default;
  font-weight: 400 !important;
  color: #a8a8a8 !important;
}

.nav-bar img {
  height: 22px;
  padding-right: 10px;
  margin: 0;
}

.nav-bar-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 16px;
  left: 0px;
  width: 200px;
  gap: 12px;
}

.nav-bar-links a {
  color: #a8a8a8;
  font-weight: 400;
}

.nav-bar-links a:hover {
  color: #29abe2;
  font-weight: 700;
}

.nav-bar-mobile {
  display: none;
}

/* //Responsive */

@media (max-width: 1050px) {
  body {
    padding-bottom: 50px;
  }
  .nav-bar-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(70px + env(safe-area-inset-bottom));
    background-color: #2a3647;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .nav-bar-mobile button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }

  .nav-bar-mobile button img {
    height: 24px;
    width: 24px;
  }

  .nav-bar-mobile button.active {
    color: #29abe2;
  }
  .nav-bar-button-active-a-mobile {
    background-color: #091931 !important;
    color: #ffffff;
  }
}

@media (max-width: 440px) {
  .nav-bar-mobile button {
    padding-right: 5px;
    padding-left: 5px;
  }

  .nav-bar-mobile button img {
    height: 18px;
  }
}
