/* Keep the map workspace fixed while every content page remains vertically scrollable. */
.dashboard-shell > :not(.topbar):not(.workspace) {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto !important;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
}

.store-profile-shell,
.task-manager-view,
.duty-checklist-view,
.personnel-admin-view,
.training-tracker-view,
.treana-notes-view,
.executive-reporting {
  min-height: 0;
  overflow-y: auto !important;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

@media (max-width: 700px) {
  .dashboard-shell > :not(.topbar):not(.workspace) {
    scrollbar-gutter: auto;
  }
}
