#tab-section .sort-select {
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #f8f9fa;
  background-size: 14px;
  max-width: 400px;

  color: #6c757d;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 8px 36px; /* add space for arrow */
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 16px;
}

#tab-section .sort-select:focus {
  outline: none;
}

#tab-section .sort-select option {
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
}

.tab-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #dee2e6;
}

.tab-container .tab-btn {
  background: none;
  border: none;
  color: #6c757d;
  padding: 2px 4px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  flex: 1;
  margin: 0 2px;

  &.active {
    background-color: #ffc40c;
    color: #000;
  }
  &:hover:not(.active) {
    background-color: #e9ecef;
    color: #333;
  }
}
