/* GenLabs Shared Tool Styles
   Imported by all free tool pages after brand.css.
   Do NOT add tool-specific styles here — keep those inline in the tool HTML.
*/

/* Upload zone drag state */
.upload-zone {
  transition: all 0.2s ease;
}
.upload-zone.drag-over {
  border-color: var(--fire) !important;
  background: rgba(232, 75, 26, 0.08) !important;
  transform: scale(1.01);
}

/* Processing pulse animation */
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.5; }
  50%  { transform: scale(1);   opacity: 1;   }
  100% { transform: scale(0.8); opacity: 0.5; }
}
.processing-pulse {
  animation: pulse-ring 1.5s ease-in-out infinite;
}

/* Tool section transitions */
.tool-section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tool-section.hidden {
  display: none;
}
