@charset "UTF-8";
/* CSS Document */

.upload-zone {
  border: 2px dashed #6c757d;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.preview-container {
  position: relative;
  width: 120px;
}
.preview-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}
.delete-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 16px;
  padding: 0;
  font-size: 14px;
  text-align: center;
}
.preview-checkbox {
  position: absolute;
  bottom: 4px;
  left: 4px;
}

