.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover {
  color: var(--fg-primary);
  text-decoration: none;
}

.tab-active {
  color: var(--fg-primary);
  border-bottom-color: var(--blue);
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.375rem;
  background-color: var(--bg-tertiary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tab-active .tab-count {
  background-color: var(--blue);
  color: var(--bg-primary);
}
