.editor-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2328;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1050;
  pointer-events: none;
}

.editor-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.editor-loading {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.editor-loading-inner {
  background: #111827;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.editor-image-preview {
  width: 180px;
  height: 100px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.85rem;
  overflow: hidden;
}

.editor-image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
