/* Redacción de documentos (apps.document_drafting) — editor embebido OnlyOffice */

.oo-editor-shell {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: calc(100vh - 12rem);
}

.oo-editor-frame {
  flex: 1;
  min-height: 32rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.doc-cell-danger {
  color: var(--color-danger);
}

.oo-suggestion-textarea {
  font-family: var(--font-mono, monospace);
  white-space: pre-wrap;
}

.oo-suggestion-loading {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-overlay-lg);
  z-index: var(--z-modal);
}
