.list-space-header {
  text-align: center;
  margin: 2rem 0 1.5rem;
}
.list-space-header h1 {
  font-size: 2rem;
  color: var(--brand-green-dark);
  margin-bottom: 0.5rem;
}
.multi-step-form {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}
.form-step.active {
  display: block;
}
.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.image-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}