.editor-pane .pane-body {
  height: 100%;
}

#editor-mount {
  height: 100%;
}

.image-preview {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: var(--space-5);
  background-image:
    linear-gradient(45deg, rgba(128, 128, 128, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(128, 128, 128, 0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(128, 128, 128, 0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(128, 128, 128, 0.12) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

.image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.empty-state {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: var(--space-5);
}

.empty-state svg {
  width: 36px;
  height: 36px;
  opacity: 0.5;
}
