.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;
}

/* Product Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  min-width: 90px;
}

.status-badge.active {
  background: #dcfce7;
  color: #15803d;
}

.status-badge.inactive {
  background: #fee2e2;
  color: #dc2626;
}