.tmp-upload-preview {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tmp-upload-item {
  width: 140px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px;
  background: #fff;
  text-align: center;
}

.tmp-upload-image {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.tmp-upload-file-icon {
  width: 120px;
  height: 90px;
  border-radius: 8px;
  background: #eef2ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
}

.tmp-upload-name {
  margin-top: 6px;
  font-size: 12px;
  word-break: break-word;
}

.tmp-upload-remove {
  margin-top: 6px;
  border: 0;
  border-radius: 6px;
  background: #dc2626;
  color: #fff;
  padding: 5px 8px;
  cursor: pointer;
}

.tmp-upload-file-link {
  text-decoration: none;
}