/* ========== pdf-to-image.css (NEW FILE) ========== */
.pdfimg-results{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.pdfimg-card{
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.6);
  padding: 12px;
}

.pdfimg-card h3{
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.pdfimg-thumb{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: block;
  margin-bottom: 10px;
}

.pdfimg-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pdfimg-download{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
}

.pdfimg-download:hover{
  background: rgba(148, 163, 184, 0.18);
}
