/* İmage preview */
.img-preview-item {
  position: relative;
  display: inline-block;
}
.img-preview-item img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
}
.img-preview-item button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
