/* Non-production candidate: restore the existing Workspace controls on small screens only. */
@media (max-width: 720px) {
  .graph-workspace-topbar {
    height: 94px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 34px 34px;
    align-content: center;
  }

  .graph-workspace-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(82px, 1fr) auto auto auto auto;
    gap: 4px;
  }

  .graph-workspace-picker,
  .graph-workspace-picker select {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .graph-workspace-action {
    width: auto;
    padding: 0 6px;
  }

  .graph-workspace-action span {
    display: inline;
  }

  .graph-workspace-action svg,
  .graph-save-button svg {
    display: none;
  }

  .graph-save-button {
    justify-self: auto;
    padding: 8px;
    font-size: 11px;
  }

  .graph-workspace-body {
    height: calc(100% - 94px);
  }
}
