/* GV Takeout history importer — explainer steps, progress bar, summary stats.
   Uses app.css variables; importer.js owns the markup. */

/* explainer steps */
.imp-steps { margin: 0; padding-left: 20px; }
.imp-steps li { margin: 7px 0; line-height: 1.45; font-size: 15px; }

/* file picker: the .btn label is the 44px+ tap target, input stays hidden */
.imp-pick { position: relative; }
.imp-pick input[type='file'] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* progress */
.imp-status { font-size: 16px; font-weight: 600; font-variant-numeric: tabular-nums; }
.imp-bar {
  height: 10px; margin: 12px 0 8px;
  background: var(--line); border-radius: 999px; overflow: hidden;
}
.imp-bar-fill {
  height: 100%; width: 0%;
  background: var(--accent); border-radius: 999px;
  transition: width 0.25s ease;
}

/* summary stat rows */
.imp-stat {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 40px; padding: 4px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.imp-stat:last-of-type { border-bottom: 0; }
.imp-stat-val { font-weight: 700; font-variant-numeric: tabular-nums; }

/* per-file error list */
.imp-err {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
  word-break: break-word; overflow-wrap: anywhere;
}
.imp-err:last-of-type { border-bottom: 0; }
.imp-err strong { display: block; color: var(--ink); font-size: 13px; }
