/*
 * public/css/tools/pdf-to-image.css
 * Additional styles for the PDF to Image tool.
 * The organize.php and result.php embed their styles inline.
 * This file provides upload-page enhancements only.
 */

/* ── Upload page: pdf-to-image color overrides ── */
/* The default upload.php uses config iconColor for the drop zone,
   which is already set to the orange gradient in ProcessModel.
   This file adds any extra polish specific to pdf-to-image. */

/* Feature chips below drop zone */
.ptiu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.ptiu-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(244, 81, 30, .08);
  border: 1px solid rgba(244, 81, 30, .2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: #BF360C;
}
.ptiu-chip svg { color: #F4511E; }
