/* Dropzone styles */
.dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: transparent;
  min-height: 200px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dropzone:hover,
.dropzone.dz-drag-hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

.dropzone .dz-remove {
  color: white;
}

.dropzone .dz-preview .dz-details {
  color: white;
}

.dropzone .dz-preview .dz-progress {
  height: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: var(--bs-primary);
}

.dropzone .dz-preview .dz-error-message {
  color: var(--bs-danger);
}

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

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  width: 2rem;
  height: 2rem;
}

.dropzone .dz-preview .dz-success-mark path {
  fill: var(--bs-success);
}

.dropzone .dz-preview .dz-error-mark path {
  fill: var(--bs-danger);
}
