/* Custom Dropzone styles */
.dropzone {
  min-height: 120px;
  border: 2px dashed #d1d5db !important;
  border-radius: 0.5rem;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.dropzone:hover {
  border-color: #9ca3af !important;
  background: #f3f4f6;
}

.dropzone.dz-drag-hover {
  border-color: #3b82f6 !important;
  background: #eff6ff;
}

.dropzone .dz-message {
  margin: 2rem 0;
  text-align: center;
}

.dropzone .dz-preview {
  margin: 0.5rem;
}

.dropzone .dz-preview .dz-image {
  border-radius: 0.375rem;
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  margin-top: -1.5rem;
}

.dropzone .dz-preview .dz-remove {
  color: #ef4444;
  font-size: 0.875rem;
  text-decoration: none;
}

.dropzone .dz-preview .dz-remove:hover {
  color: #dc2626;
  text-decoration: underline;
}