/* Drag and Drop file upload styling */
.drop-zone {
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
}

.drop-zone.drag-over {
  background-color: rgba(13, 110, 253, 0.1);
  border: 2px dashed #0d6efd;
  transform: scale(1.02);
}

.drop-zone.drag-over::before {
  content: "Drop files here to upload";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13, 110, 253, 0.9);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  z-index: 1000;
  pointer-events: none;
}