/*
 * privacy_scanner.css — PDF Privacy Scanner's findings-review UI.
 * Reuses page_swap.css and pdf_doctor.css for the shared dropzone/loading-
 * spinner/password-box/error-box/fix-section/related-tools pieces (see
 * this page's <head> - all three stylesheets load together) and the same
 * shared token contract from style.css's :root. bp-summary-headline/
 * bp-flagged-head/bp-select-actions/bp-fix-result-summary are redefined
 * here (not assumed from blank_pages.css, which isn't loaded on this
 * page) - same shape as redaction_verifier.css's own copy, by design.
 */

.bp-summary-headline { font-size: 17px; font-weight: 700; color: var(--text); }
.bp-flagged-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.bp-flagged-head h3 { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 16px; }
.bp-select-actions { display: flex; gap: 12px; }
.bp-fix-result-summary { font-size: 14px; color: var(--text); margin: 0 0 14px; }

.ps-findings-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px; margin: 14px 0 18px;
}

.ps-finding-card {
  display: flex; gap: 10px; align-items: flex-start; border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px; background: var(--card); cursor: pointer;
  transition: border-color 0.15s ease;
}
.ps-finding-card:hover { border-color: var(--accent-light); }
.ps-finding-card.ps-finding-metadata_author { border-left: 3px solid var(--warn); }
.ps-finding-card:not(.ps-finding-metadata_author) { border-left: 3px solid var(--danger); }

.ps-finding-card input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.ps-finding-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ps-finding-category {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text-muted);
}
.ps-finding-value {
  font-size: 13.5px; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  word-break: break-all;
}
.ps-finding-where { font-size: 11.5px; color: var(--text-muted); }

@media (max-width: 640px) {
  .ps-findings-list { grid-template-columns: 1fr; }
}
