.qb-badge {
  font-size: 0.8em;
  transform: scale(0.8);
  transform-origin: center bottom;
  display: inline-block;
  padding: 4px 8px;
}
/* Centers and scales badges */
.qb-badge-container {
  text-align: center;        /* Center all badges */
  margin-top: 1em;           /* Add space above the row */
}
/* Arrange badges side by side */
.qb-badge {
  display: inline-block;     /* Horizontal layout */
  transform: scale(0.5);     /* Half size */
  transform-origin: center bottom;
  margin: 0 10px;            /* Space between badges */
  vertical-align: middle;
}
/* Optional: if your badges include image logos */
.qb-badge img {
  max-width: 80px;
  height: auto;
}
}