/* Hero Tabs — pill-style track with a solid active pill (upstream "solid"). */

.hero-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--color-base-200);
  border-radius: var(--radius-field);
  padding: 4px;
  gap: 4px;
}

.hero-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  height: var(--size-sm);
  border-radius: var(--radius-field);
  background-color: transparent;
}

.hero-tab-active {
  background-color: var(--color-base-100);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}

.hero-tab-label {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--color-base-content);
}
