
/* Extra tiny styles to complement Tailwind for dropzones & lists */
.dropzone {
  border: 2px dashed #9ca3af;
  border-radius: 1rem;
  padding: 1.25rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.dropzone.dragover {
  background: #f3f4f6;
  border-color: #4f46e5;
}
.file-pill {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; border: 1px solid #e5e7eb; border-radius: .75rem;
  padding: .5rem .75rem; background: #fff;
}
.progress-wrap { height: 10px; background: #e5e7eb; border-radius: 9999px; overflow: hidden; }
.progress-bar { height: 100%; width: 0%; background: #4f46e5; transition: width .2s linear; }
footer a { text-decoration: underline; }
