body.miot-app-shell {
  display: flex;
  flex-direction: row;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #0b1730;
}

body.miot-app-shell .miot-app-frame {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  display: block;
  background: #0b1730;
}

body.miot-app-shell .agent-sidebar {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 var(--agent-sidebar-width);
  width: var(--agent-sidebar-width);
  height: 100%;
  transform: none !important;
  transition: flex-basis 0.22s ease, width 0.22s ease, opacity 0.22s ease;
}

body.miot-app-shell .agent-sidebar:not(.is-open) {
  flex-basis: 0;
  width: 0;
  min-width: 0;
  overflow: hidden;
  border-left-width: 0;
  opacity: 0;
  pointer-events: none;
}
