/**
 * css/insert-report.css
 * Styles for the Insert icon button on NO items (checklist pane)
 * and the fixed sheet sections in the report pane.
 * Depends on: base.css
 */


/* ─── INSERT ICON BUTTON ─────────────────────────────────────────────────────── */

.insert-btn {
  font-size: 1rem;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}

.insert-btn:hover {
  opacity: 1;
  background: var(--color-accent-light);
  transform: scale(1.15);
}

.insert-btn.is-inserted {
  color: var(--color-yes);
  opacity: 1;
  cursor: default;
  pointer-events: none;
}


/* ─── REPORT SHEET SECTIONS ──────────────────────────────────────────────────── */

.report-sheet-header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark-accent);
  padding: var(--space-3) var(--space-4) var(--space-1);
  margin-top: var(--space-3);
  border-bottom: 1px solid var(--color-dark-border);
  user-select: none;
  cursor: default;
}

.report-sheet-header:first-child {
  margin-top: 0;
}

.report-sheet-body {
  padding: var(--space-2) var(--space-4) var(--space-3);
  min-height: 36px;
  outline: none;
}

/* No feedback placeholder */
.report-no-feedback {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-dark-muted);
  font-style: italic;
  padding: var(--space-1) 0;
  pointer-events: none;
  user-select: none;
}

/* Error line — inserted via Insert button */
.report-error-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: var(--space-1) 0;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  margin: 2px 0;
  cursor: default;
  user-select: text;
}

.report-error-line__num {
  font-size: 0.65rem;
  color: var(--color-dark-muted);
  min-width: 1.4rem;
  flex-shrink: 0;
  text-align: right;
}

.report-error-line__level {
  font-weight: var(--weight-bold);
  font-size: 0.65rem;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.report-error-line__text {
  color: var(--color-dark-text);
  flex: 1;
}
