.NusionScriptEditor {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.NusionScriptEditor .Menu {
  position: absolute;
  width: 200px;
  height: 100%;
  background: grey;
}

.NusionScriptEditor .Menu * {
  box-sizing: border-box;
}

.NusionScriptEditor .Editor {
  position: absolute;
  width: calc(100% - 200px);
  height: 100%;
  left: 200px;
  background: #111;
}

.NusionScriptEditor .Editor .Tab * {
  user-select: none;
}

.NusionScriptEditor .SuperPureModal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.NusionScriptEditor .SuperPureModal .ModalContent {
  display: inline-block;
  position: fixed;
  color: #fff;
  z-index: 10000;
}
