.base-tabs {
  width: 100%;
}

.base-tabs__wrapper {
  display: flex;
  gap: 0.5rem;
}

.base-tabs__button {
  all: unset;
  cursor: pointer;
}

.base-tabs__tab {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s;
  color: #868e96;
}

.base-tabs__tab:hover {
  background-color: #e9ecef;
}

.base-tabs__tab--active {
  background-color: #dee2e6;
  color: #212529;
  font-weight: 500;
}

.base-tabs__label {
  font-size: 0.9375rem;
}

.base-tabs__count {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .base-tabs__wrapper {
    gap: 0.375rem;
  }

  .base-tabs__tab {
    padding: 0.375rem 0.75rem;
  }

  .base-tabs__label {
    font-size: 0.875rem;
  }

  .base-tabs__count {
    font-size: 0.8125rem;
  }
}

@media (prefers-color-scheme: dark) {
  .base-tabs__tab {
    color: #868e96;
  }

  .base-tabs__tab:hover {
    background-color: #343a40;
  }

  .base-tabs__tab--active {
    background-color: #495057;
    color: #f8f9fa;
  }
}
