.nav-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  overflow: auto;
  padding: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-container::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  height: 42px;
  justify-content: center;
  font-weight: 500;
  transition: all 0.5s;
  white-space: nowrap;
  border-radius: 9999px;
  text-decoration: none;
 background-color: rgba(35, 29, 38, 1);
	border: 1px solid #7b777c;
	color:#7b777c;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  background-color: #F87350;
	color: #fff;
}

.nav-container-wrapper,
.nav-container {
  padding-bottom: 0;
}

.nav-container {
  padding-left: 0;
}

/* Mobile styles */
@media (max-width: 640px) {
  .nav-container {
    gap: 0.5rem;
  }

  .nav-link {
    height: 33px;
    font-size: 0.875rem;
  }
}
