.editor-container {
  --header-height: 66px;
  height: 100%;
}


.iframe-container {
  transition: all 0.3s ease;
  overflow: hidden;
  
}
.preview-pane {
  height: calc(100vh - var(--header-height));
  width: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-pane {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0
}

[data-editable] {
  cursor: pointer;
}

[data-editable]:hover {
  background-color: #f0f0f0;
}

.mobile-view {
  width: 393px;
  aspect-ratio: 393 / 852;

  /* height: 667px; */
  border: 3px solid #858585;
  border-radius: 3rem;
  box-shadow: 0 121px 49px #00000005, 0 68px 41px #00000014, 0 30px 30px #00000024, 0 8px 17px #00000029;
  max-height: calc(100vh - 10px);

  @media (max-height: 930px) {
    scale: 0.90;
  }
  @media (max-height: 840px) {
    scale: 0.85;
  }
  @media (max-height: 800px) {
    scale: 0.75;
  }
 
}