.tabs-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid #bfd0ee;
  background: #f8fbff;
  width: fit-content;
  max-width: 100%;
}

.tab-btn {
  width: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted, #475569);
  font-weight: 700;
  padding: 8px 14px;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
}

.tab-btn.active {
  background: #e9f1ff;
  color: #0b4cb8;
  box-shadow: inset 0 0 0 1px rgba(11, 76, 184, 0.14);
}

.tab-btn-badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 999px;
  background: #dc2626;
  box-shadow: 0 0 0 2px #ffffff;
  vertical-align: middle;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
}
