.emfu-field {
  display: none !important;
}

.elementor-field-type-upload {
  position: relative;
  border: 2px dashed #bbb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s;
}

.elementor-field-type-upload:hover {
  border-color: #666;
  background: #fff;
}

.emfu-preview {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}

.emfu-item {
  position: relative;
  width: 200px;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding-right: 100px;
  display: flex;
  align-items: center;
}

.emfu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emfu-remove {
  position: absolute;
  top: unset;
  right: 0;
  background: #000;
  color: #fafafa;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  line-height: 0;
}

.emfu-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: rgba(0,0,0,0.1);
}

.emfu-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #4caf50;
}
.elementor-field-type-upload.emfu-dragover {
  background: #e8f5e9;
  border-color: #4caf50;
}