

/* SVG elements initial state in editor */
.svg-container svg * {
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
}

.block-preview {
  background: #f9f9ff;
  border: 1px solid #ccd;
  border-radius: 8px;
  padding: 0;
  width: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svg-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
}

.svg-preview svg {
  width: 100%;
  height: auto;
  display: block;
}