/**
 * Puck Editor Layout Styles
 *
 * Full-viewport fixed layout for the page editor.
 * Offsets from the top when the impersonation (Support Mode) banner is visible.
 */

.editorLayout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0f172a;
  z-index: 50;
}

/* Push editor below impersonation banner - matches dashboard.module.css offsets */
.editorLayoutWithBanner {
  top: 52px;
}

@media (max-width: 768px) {
  .editorLayoutWithBanner {
    top: 100px;
  }
}
