.size-6 {
  font-size: 6px;
  width: 24px;
  height: 24px;
}

.dropzone {
  border: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-height: 220px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.dropzone:hover {
  transform: scale(1.02);
}

/* Hover effect */
.dropzone.dz-drag-hover {
  background: #f5faff;
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.3);
}

/* Dropzone message */
.dropzone .dz-message {
  text-align: center;
  font-size: 16px;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Preview container */
.dz-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}

/* Image thumbnail */
.dz-preview .dz-image img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 6px;
}

.dz-progress {
  display: none;
}

.dz-button {
  border: none;
  background: transparent;
}

.dz-file-icon {
  display: none;
  font-size: 40px;
  text-align: center;
}
.dz-preview.dz-file-preview:not(.dz-image-preview) .dz-file-icon {
  display: block;
}
.dz-preview.dz-file-preview:not(.dz-image-preview) img[data-dz-thumbnail] {
  display: none;
}
