.image-dropzone {
  padding: 24px;
  text-align: center;
  border: 2px dashed #808080;
  background: #fff;
  cursor: pointer;
  margin-bottom: 12px;
}

.image-dropzone.dragover {
  border-color: #000080;
  background: #ffffe1;
}

.image-previews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.image-preview-box {
  padding: 8px;
  background: #dfdfdf;
  border: 1px solid #808080;
}

.image-preview-box h3 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: bold;
}

.image-preview-box img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #808080;
}

.image-meta {
  font-size: 11px;
  color: var(--win-muted);
  margin-top: 6px;
}

.quality-row[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
