/* Matter Workspace scroll containment
   Keep the existing DLA shell/header/sidebar untouched while preventing the
   document itself from becoming a second vertical scroll container. The
   WorkflowShell <main data-scroll-container> remains the single route scroller. */

html:has([data-testid="new-matter-workspace"]),
body:has([data-testid="new-matter-workspace"]),
#root:has([data-testid="new-matter-workspace"]) {
  height: 100%;
  max-height: 100%;
  overflow: hidden !important;
}

body:has([data-testid="new-matter-workspace"]) > #root {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden !important;
}
