.pdf-to-word-drop-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 45px 20px;
  background: #f8fafc;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}
.pdf-to-word-drop-zone:hover,
.pdf-to-word-drop-zone.is-dragging {
  border-color: #2563eb;
  background: #eff6ff;
}
.pdf-to-word-drop-icon {
  font-size: 48px;
  color: #2563eb;
}
.pdf-to-word-file-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}
.pdf-to-word-file-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
}
.pdf-to-word-file-details {
  min-width: 0;
  flex: 1;
}
.pdf-to-word-result-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
#pdfToWordProgress .progress {
  height: 12px;
}
@media (max-width: 575.98px) {
  .pdf-to-word-drop-zone {
    padding: 32px 15px;
  }
  .pdf-to-word-file-card {
    align-items: flex-start;
  }
}
