/* ============================================
   MANIESTA NOTES — EDITOR
   ============================================ */

.editor-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.editor-title {
  font-size: 2rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-primary);
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
}

.editor-title:focus {
  outline: none;
}

.editor-content {
  min-height: 300px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--surface);
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.editor-toolbar input[type="text"] {
  flex: 1;
  min-width: 150px;
}

.save-indicator {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Toolbar icons */
.editor-toolbar .icon-btn svg {
  width: 20px !important;
  height: 20px !important;
}