/* Free PDF to Image Converter — additive to utility.css and
   images-to-pdf.css, which already supply the hero, drop zone, status
   line, and .itp-workspace/.itp-options/.itp-actions layout this page
   reuses. Only the results list is new here. */

.pti-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 8px; }
.pti-list[hidden] { display: none; }
.pti-row { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 12px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.pti-thumb { width: 56px; height: 56px; object-fit: contain; border-radius: 6px; border: 1px solid var(--line); background: #fff; }
.pti-name { font-size: 13px; font-weight: 600; }
.pti-row .button { min-height: 36px; padding: 6px 12px; font-size: 13px; }

@media (max-width: 700px) {
  .pti-row { grid-template-columns: 44px 1fr auto; }
}
