.tabs {
  display: inline-flex;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background: transparent;
}

.tab {
  padding: 0.75rem 1.25rem;
  background: var(--bg-tertiary);
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
}

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

.tab.active {
  color: var(--accent-color);
  background: var(--bg-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
}

