/* Custom touches on top of Tailwind */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#dropzone.drag-over {
  border-color: #ea580c;
  background: #fff7ed;
  transform: scale(1.01);
}

#roastBtn:not(:disabled):hover {
  box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.4);
}

/* Smooth fade-in for results */
.fade-in {
  animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* List item styling */
#roastList li, #fixesList li, #strengthsList li {
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}
#roastList li::before { content: "🔥"; position: absolute; left: 0; }
#fixesList li::before { content: "✅"; position: absolute; left: 0; }
#strengthsList li::before { content: "💪"; position: absolute; left: 0; }
