.upload-wrapper { display: flex; gap: 1rem; }
.upload-item { position: relative; width: 100%; max-width: 150px; cursor: pointer; }
.upload-item img { width: 100%; border: 2px solid #555; border-radius: 8px; transition: transform .2s; }
.upload-item:hover img { transform: scale(1.05); }
.upload-item input[type=file] { opacity: 0; position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.upload-item .uploaded-badge { position: absolute; top: 4px; right: 4px; background: rgba(0,128,0,0.7); color: #fff; font-size: 0.75rem; padding: 2px 4px; border-radius: 4px; }
