/* Typed control fixtures share the component inspector, with native form fields. */
.ce-controls-content {
  max-width: 680px;
}
.ce-controls-heading {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ce-controls-heading h3 {
  margin-bottom: 4px;
}
.ce-controls-heading p {
  color: var(--chrome-muted);
  font-size: 11px;
}
.ce-edited {
  background: #fbf1da;
  border-radius: 4px;
  color: #866c33;
  margin-left: 8px;
  padding: 2px 5px;
}
.ce-reset {
  background: none;
  border: 0;
  color: var(--mbk-sage-deep);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  padding: 0;
  text-decoration: underline;
  white-space: nowrap;
}
.ce-reset:disabled {
  color: var(--chrome-muted);
  cursor: default;
  text-decoration: none;
}
.ce-control-row input:not([type="checkbox"]),
.ce-control-row select {
  background: white;
  border: 1px solid #cbd2cc;
  border-radius: 5px;
  color: var(--chrome-ink);
  font: inherit;
  font-size: 12px;
  height: 32px;
  max-width: 100%;
  padding: 5px 8px;
  width: 100%;
}
.ce-control-row input[type="checkbox"] {
  accent-color: var(--mbk-sage-deep);
  height: 16px;
  margin: 0;
  width: 16px;
}
.ce-control-row .ce-check-value {
  align-items: center;
  display: flex;
  font: inherit;
  font-size: 11px;
  gap: 8px;
  min-height: 32px;
  padding: 0;
}
.ce-control-row input[aria-invalid="true"] {
  border-color: #b55646;
}
.ce-optional-control .ce-unset-value {
  color: var(--chrome-muted);
  font-size: 11px;
  margin: 3px 0 0;
}
.ce-optional-control:has(input[type="checkbox"]:checked) .ce-unset-value,
.ce-optional-control:has(input[type="checkbox"]:not(:checked)) .ce-hint-value {
  display: none;
}
.ce-controls-notice {
  background: #f4f6f3;
  border-radius: 6px;
  color: var(--chrome-ink-2);
  font-size: 12px;
  padding: 10px 12px;
}
.ce-control-alert {
  background: #fcf0ed;
  border: 1px solid #edcdc5;
  border-radius: 6px;
  color: #873b2e;
  font-size: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
}
.ce-control-alert p {
  margin: 4px 0 6px;
}
.ce-reset-status {
  color: var(--mbk-sage-deep);
  font-size: 11px;
}
.ce-controls-preview {
  min-width: 0;
  position: relative;
  width: 100%;
}
.ce-preview-status {
  align-items: center;
  bottom: 14px;
  color: var(--chrome-muted);
  display: flex;
  font-size: 11px;
  gap: 7px;
  justify-content: center;
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
}
.ce-pending-dot {
  background: var(--mbk-sage-deep);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}
.ce-action--quiet {
  background: #edf3ef;
  border-color: #c4d6ca;
  color: var(--mbk-sage-deep);
}
