﻿#preview-render {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  word-break: break-word;
}


/* CSS snippet */
#css-snippet-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px dashed #ccc;
  background: #111;
  color: #eee;
  font-size: 0.85rem;
  overflow-x: auto;
}
#preview-text-input[contenteditable] {
  min-height: 80px;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  overflow-y: auto;
}

#preview-text-input[contenteditable][data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: #999;
  pointer-events: none;
}