.Window.Actions .ActionRows {
  display: flex;
  flex-direction: column;
}
.Window.Actions .ActionRows .SelectAllRow {
  display: flex;
  justify-content: flex-end;
  gap: var(--ContextPadding);
  padding: var(--ContextWindowPadding) var(--ContextWindowPadding) 0 var(--ContextWindowPadding);
}
.Window.Actions .ActionRows .SelectAllRow .Head {
  white-space: nowrap;
}
.Window.Actions .ActionRows button {
  margin-right: 0;
  flex-grow: 1;
  white-space: nowrap;
  flex-basis: calc(( var(--ContextVerticalWidth)/* Calculate max width of buttons when fitting 3 buttons next to each other */ - var(--ContentPadding) - var(--ContentSplitterPadding)/* .Context width */ - (2 * var(--BorderWidth))/* Left and right padding of .Context */ - (2 * var(--ContextPadding))/* Left and right border of .SelectionFilter */ - (2 * var(--ContextWindowPadding))/* Left and right padding of .ActionRows */ - (2 * var(--ContextPadding))/* Left and right padding of .Buttons */ ) / 3/* 2x gap of .Buttons (in between the 3 buttons) */);
}
