/**
 * Camp HTML inline de les eines creatives.
 */
.eina-html-editable-wrapper {
  display: grid;
  gap: 0.35rem;
}

.eina-html-editable {
  min-width: 0;
}

.eina-html-editable-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  opacity: 0.7;
}

.eina-html-editable-status:empty {
  display: none;
}

.eina-html-editable-status::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-color: currentColor;
  border-radius: 999px;
  flex: 0 0 auto;
}

.eina-html-editable-status[data-state="saving"] {
  opacity: 0.95;
  color: #722a47;
}

.eina-html-editable-status[data-state="error"] {
  color: #b00020;
}
