.smart-badge {
  --badge-fill: currentColor;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35em 0.55em;
  border-radius: 0.3rem;
  background: var(--background-color);
  background-color: var(--background-color) important!;
  font: 600 0.85rem/1 var(--bs-body-font-family);
}


.badge-icon svg {
  width: 24px;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}


[data-badge-mode="text"] .badge-icon {
  display: none;
}
[data-badge-mode="icon"] .badge-text {
  display: none;
}

#badge-mode-toggle {
  max-height: 28px; /* limit ONE dimension */
  width: auto; /* let the other scale */
  margin-top: 0.4rem; /* little gap when below heading */
  cursor: pointer;
}


.badge.smart-badge .badge-text {
  color: var(--badge-fill) !important;
}