.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem 0 2rem;
  padding: 1.5rem;
  border: 2px dashed #2735d4;
  border-radius: 1.5rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-dropzone:hover,
.upload-dropzone--active {
  background-color: #f2f3ff;
}

.upload-dropzone .upload-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: #2735d4;
}

.upload-resume,
.upload-panel {
  margin-bottom: 2rem;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.upload-resume {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.upload-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.progress-bar {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #2735d4;
  transition: width 0.3s ease;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.upload-action {
  padding: 0.25rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background-color: #fff;
  color: #374151;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.upload-action:hover {
  background-color: #f3f4f6;
}

.upload-action:active {
  scale: 0.96;
}

.upload-errors {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
  color: #b91c1c;
  max-height: 16rem;
  overflow-y: auto;
}
