.app-section-tabbar {
  border-bottom: 1px solid var(--bs-border-color);
}

.app-section-tablist {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.app-section-tablist::-webkit-scrollbar {
  display: none;
}

.app-section-tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  min-height: 2.75rem;
  padding: .5rem .25rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--bs-secondary-color);
  text-decoration: none;
  white-space: nowrap;
}

.app-section-tab:hover,
.app-section-tab.active {
  border-bottom-color: var(--bs-primary);
  color: var(--bs-primary);
}

.app-section-tab:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bs-primary) 45%, transparent);
  outline-offset: -2px;
}

.app-section-tab .badge {
  min-width: 1.5rem;
  padding-inline: .4rem;
  font-size: .72rem;
}
