#ap-text-editor-background {
  position: absolute;
  color: var(--text-primary);
  background-color: color-mix(in srgb, var(--ink-inverse) 33%, transparent);
  width: 100%;
  height: 100%;
  z-index: 1;
}

#ap-text-editor-background #ap-text-editor-container {
  position: absolute;
}

#ap-text-editor-background #ap-text-editor-container #ap-text-editor {
  width: 12ch;
  min-width: 12ch;
  max-width: 20ch;
  overflow-y: hidden;
  resize: none;
  outline: none;
  border: none;
  background-color: color-mix(in srgb, var(--ink-inverse) 67%, transparent);
  color: var(--text-muted);
  font-size: 0.9em;
  line-height: 0.9em;
  padding: 0.4em;
  border-radius: 3px;
}