.tab-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  background: #161B22;
  padding: 10px;
  z-index: 98;
  border-bottom: 1px solid #333;
}

.tab-btn {
  background: transparent;
  color: #E6EDF3;
  border: none;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}

.tab-btn.active {
  background: #3A86FF;
  color: #E6EDF3;
  font-weight: bold;
  border: none;
}