:host {
  display: inline;
}

:host([hidden]) {
  display: none;
}

.rux-button-group {
  display: flex;
}
.rux-button-group ::slotted(rux-button:not(:last-child)) {
  margin-right: var(--spacing-2, 0.5rem);
}
.rux-button-group--left {
  justify-content: flex-start;
}
.rux-button-group--right {
  justify-content: flex-end;
}
.rux-button-group--center {
  justify-content: center;
}