html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#root {
  height: 100%;
}

.shell-app-root {
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 304px 1fr;
  grid-template-rows: 68px 1fr;
  grid-template-areas:
    'nav header'
    'nav content';
  transition: grid-template-columns 0.2s ease;
}

.shell-app-root:has(#juno-navigation-left-bar[data-expanded='false']) {
  grid-template-columns: 104px 1fr;
}

.shell-app-root *,
.shell-app-root *::before,
.shell-app-root *::after {
  box-sizing: border-box;
}

.shell-app-root #juno-navigation-left-bar {
  grid-area: nav;
}

.shell-app-root #juno-top-navigation-root {
  grid-area: header;
}

.shell-app-root #juno-navigation-bottom-container {
  grid-area: content;
  overflow: hidden;
}

.shell-app-root #juno-launchpad {
  height: 100%;
  overflow: auto;
}

.shell-app-root #platform-ai-assistant-container,
.shell-app-root #sidekickcontainer {
  position: fixed;
  z-index: 1000;
}

