.full-width {
  width: 100%;
}

.btn-group {
  display: flex;
  justify-content: center; // Align to center by default

  &.align-end {
    justify-content: flex-end;
  }

  &.align-start {
    justify-content: flex-start;
  }
}
