.image-upload-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-dropzone {
  width: 190px;
  height: 190px;
  border: 2px dashed #bbb;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-dropzone .bi {
  font-size: 48px;
  transition: opacity 0.2s ease;
}

.image-dropzone:hover {
  border-color: #666;
}

.image-dropzone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image {
  position: absolute;
  display: none;
}
