/* ERVRA.com Free PDF Tools Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;750;800&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
}

.font-display {
  font-family: 'Outfit', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Custom interactive dropzone styles */
.pdf-dropzone {
  border-style: dashed;
  background-image: radial-gradient(circle, rgba(2, 132, 199, 0.05) 1px, transparent 1px);
  background-size: 8px 8px;
  transition: all 0.2s ease-in-out;
}

.pdf-dropzone:hover {
  background-color: rgba(2, 132, 199, 0.02);
}

/* Page animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
