/* LessonNode editor — modal contents. */

.lesson-node-editor {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px;
  max-height: 70vh;
  overflow-y: auto;
}

.lesson-node-editor label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text, #1f2937);
}

.lesson-node-editor__answer-row {
  display: flex;
  gap: 10px;
}

.lesson-node-editor__answer-row > * {
  flex: 1;
}

.lesson-node-editor__meta-row {
  display: flex;
  gap: 12px;
}

.lesson-node-editor__meta-row > * {
  flex: 1;
}

.lesson-node-editor__voice,
.lesson-node-editor__replay {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--color-bg-elevated, #f9fafb);
  border: 1px dashed var(--color-border, #d1d5db);
  border-radius: 6px;
}

.lesson-node-editor__voice label,
.lesson-node-editor__replay label {
  margin: 0;
  flex-shrink: 0;
}

.lesson-node-editor__voice-status,
.lesson-node-editor__replay-status {
  flex: 1;
  font-size: 0.85rem;
  color: var(--color-text-muted, #6b7280);
}

.lesson-node-editor__footer {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border, #e5e7eb);
  align-items: center;
}

@media (max-width: 768px) {
  .lesson-node-editor__answer-row,
  .lesson-node-editor__meta-row { flex-direction: column; }
}
