.dropzone {
  border: 2px dashed rgb(71, 85, 105);
  transition: border-color 200ms, background-color 200ms;
}

.dropzone.drag-over {
  border-color: rgb(99, 102, 241);
  background-color: rgb(30, 27, 75);
}

.progress-bar {
  height: 8px;
  background-color: rgb(30, 41, 59);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar > div {
  height: 100%;
  background: linear-gradient(90deg, rgb(99, 102, 241), rgb(139, 92, 246));
  transition: width 400ms ease-out;
}
