.team-details-page {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: calc(100vh - var(--app-header-height));
  min-height: 0;
  overflow: hidden;
  background: var(--app-page-bg);
}

.workspace-route-content {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
}

.session-route-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.session-route-content > * {
  flex: 1 1 auto;
  min-height: 0;
}
