.tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 40px;
    background: rgba(134, 134, 134, 0.128);
    backdrop-filter: blur(10px);
    height: 50px;
    width:fit-content;
    padding: 0px 5px;
}
.tab {
    border-radius: 50px;
    background-color: transparent;
    border: none;
    color: var(--text-clr);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 300;
    transition: background-color 0.3s ease;
    padding: 10px 25px;
    transition: 0.5s;
}
.tab.active {
    background-color: var(--primary-clr);
        color: var(--text-clr);
    padding: 12px 25px;
}
.tab.active:hover {
    color: var(--text-clr);
}

.tab:hover {
    color: var(--secondary-clr);
}

.dropdown-tabs {
  display: none;
  margin-bottom: 2rem;
  text-align: center;
}


 .dropdown-tabs select {
  width: 86vw;
  max-width: 360px;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #1f2a32;
  color: white;
  border: none;
  appearance: none; 
  background-image: url("/icons/arrow-down.png");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1rem;
  box-sizing: border-box;
  outline: none;            
  border: none;     
  box-shadow: none;
}

select::-ms-expand {
  display: none;
}

.dropdown-tabs {
  display: none;
  margin-bottom: 2rem;
  text-align: center;
}

@media screen and (max-width: 860px) {
  #desktopTabs {
    display: none;
  }

  #mobileTabs {
    display: block;
  }
}

@media screen and (max-width: 400px) {
     .dropdown-tabs select {
        min-width: 360px;
        max-width: 93vw;
     }
}