/* The page container owns scrolling and needs a definite height from its host.
 * Keep notices outside that scroll area without collapsing its flex basis. */
section:has(> .evaluation-overview) {
  block-size: 100%;
  min-block-size: 0;
  display: flex;
  flex-direction: column;
}

section:has(> .evaluation-overview) > :not(.evaluation-overview) {
  flex-shrink: 0;
}

section > .evaluation-overview {
  flex: 1 1 0;
  block-size: auto;
  min-block-size: 0;
}
