#dropZone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(110, 142, 251, 0.3);
  backdrop-filter: blur(2px);
  border: 2px dashed #6e8efb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  z-index: 900;
  transition: background 0.2s;
}

#dropZone i {
  margin-right: 8px;
}

#dropZone:hover {
  background: rgba(110, 142, 251, 0.5);
}