#custom-dropzone {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}

#previewContainer {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.preview-thumb {
  position: relative;
  width: 100px;
  height: 100px;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  border: none;
  /* border-radius: 50%;*/
  cursor: pointer;
  font-size: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

input[name="image1"],
input[name="image2"],
input[name="image3"] {
  display: none;
}