/* Resize-only Image Resizer */

#previewWrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  padding: 0.5rem;
  text-align: center;
}

#previewWrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.warning-box {
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.35);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
