/* ============================================================
   Data import step
   Source summary, plus the good/bad example uploaders. The
   camera picker is shared (components/checkbox-card.css).
   ============================================================ */

/* Fake match count on the left, a link back out to the source on the right */
.source-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-3);
}

.source-note .link-out {
  margin-left: auto;
}

/* ---------- Examples ---------- */

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.example {
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}

.example__head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 400;
}

.example__head--good {
  color: var(--accent-lt2);
}

.example__head--bad {
  color: var(--warn);
}

.example__drop {
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-5);
  min-height: 120px;
  border: 1.5px dashed var(--border-2);
  margin: 12px;
  border-radius: var(--r);
  cursor: pointer;
  font-size: 12.5px;
}

.example__drop:hover {
  border-color: #3d4f60;
}
