/* Keep page headings on the left and related actions together on the right.
   Do not change document tables, editor forms, or button event bindings. */
.page .toolbar {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.page .toolbar > :is(h2, h3, h4),
.page .toolbar > div:has(> :is(h2, h3, h4)) {
  margin-right: auto;
}
.page .toolbar-tools {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}
.page .toolbar > button,
.page .toolbar-tools > button {
  flex: 0 0 auto;
  white-space: nowrap;
}
