.tab-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 20px;
  height: 54px;
}

.tab-toggle {
  display: flex;
}

.tab-button {
  background: none;
  border: none;
  padding: 15px 25px;
  margin: 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'SwitzerVariable';
  color: var(--black);
  font-size: 18px;
  font-weight: 300;
  line-height: 23.76px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.tab-button:hover {
  background-color: var(--green-hover);
}

.tab-button:active {
  background-color: var(--green-grey-low-light);
}

.tab-button.active {
  border-bottom: 1px solid var(--green-grey); /* Active tab border */
  font-weight: 500;
}

@media screen and (min-width: 450px) and (max-width: 1200px) {
  .tab-toggle-wrapper {
    margin: 0 0;
  }
}