/* cms/static/cms/prose_extensions/wagtail_chart_embed.css */

.ProseMirror embed[embedtype="chart"] {
  display: inline-block;
  box-sizing: border-box;
  width: 320px;
  height: 180px;
  margin: 0.25rem 0.5rem;
  border: 1px dashed #999;
  background: #f9f9f9;
  vertical-align: middle;
  position: relative;
}

.ProseMirror embed[embedtype="chart"][data-box="sm"] {
  width: 240px;
  height: 135px;
}

.ProseMirror embed[embedtype="chart"][data-box="lg"] {
  width: 480px;
  height: 270px;
}

.ProseMirror embed[embedtype="chart"]::before {
  content: "📈 " attr(title);
  font-size: 12px;
  padding: 6px;
  display: block;
  text-align: center;
  white-space: normal;
}

/* ProseMirror NodeView placeholder for chart embeds */
.ProseMirror .wagtail-chart-embed {
  display: block;
  height: 120px !important;
  padding: 0.75rem;
  margin: 0.25rem 0.5rem;
  border: 1px dashed #999;
  background: #f9f9f9;
  box-sizing: border-box;
  max-width: 100%;
}

.ProseMirror .wagtail-chart-embed[data-box="sm"] {
  width: 240px;
}

.ProseMirror .wagtail-chart-embed[data-box="md"] {
  width: 320px;
}

.ProseMirror .wagtail-chart-embed[data-box="lg"] {
  width: 480px;
}

.ProseMirror .wagtail-chart-embed__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.ProseMirror .wagtail-chart-embed__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ProseMirror .wagtail-chart-embed__meta {
  font-size: 12px;
  opacity: 0.8;
}

.ProseMirror .wagtail-chart-embed__url {
  font-size: 12px;
  text-decoration: underline;
  word-break: break-word;
}
