#preview-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.preview-box {
  background: #fefefe;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
  width: 300px;
  min-height: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.preview-box h3 {
  margin-bottom: 10px;
  color: #444;
}

.preview-box img {
  max-width: 100%;
  max-height: 180px;
  border-radius: 4px;
  margin-top: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  object-fit: contain;
}

.download-btn {
  display: none;
  margin-top: 12px;
  background-color: #007bff;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.download-btn:hover {
  background-color: #0056b3;
}

