.tab-row {
  display: flex;
  gap: 4px;
  padding: 12px 4px 0;
  position: relative;
  z-index: 10;
}

.tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #888;
  background: #2A2A2A;
  border: none;
  padding: 8px 16px 10px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  top: 4px;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.2);
}

.tab:hover {
  background: #333;
  color: #bbb;
  top: 2px;
}

.tab.active {
  background: #1A1A1A;
  color: #E8E0D6;
  top: 0;
  padding-bottom: 14px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
  z-index: 11;
}

.tab .count {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  color: #666;
  margin-left: 5px;
}
