/* Submit row uses flex; keep save buttons grouped on the right */
body.change-form .submit-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

/* Move DELETE to the far left (works whether it is wrapped or not) */
body.change-form .submit-row > a.deletelink,
body.change-form .submit-row .deletelink-box {
  order: -1 !important;
  margin-right: auto !important;  /* pushes the rest to the right */
}

/* Unified heights */
body.change-form .submit-row input[type="submit"],
body.change-form .submit-row a.button,
body.change-form .submit-row a.deletelink {
  height: 34px !important;
  line-height: 34px !important;
  padding: 0 14px !important;
  box-sizing: border-box !important;
}

