.image-list-thumb {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Edit Form Image Preview */
.preview-container {
  margin-top: 10px;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.existing-image-list {
  width: 120px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 2px;
  height: 120px;
}

.remove-existing {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.image-thumb {
  height: 118px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 2px;
  width: 124px;
}

.remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

/* Product Error Css */
.field-error.text-danger {
  color: #8e0b21;
  font-size: 13px;
  margin-top: 5px;
}