body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 40px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 25px;
}

.upload-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

button {
  padding: 8px 16px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.progress-container {
  width: 100%;
  background: #e0e0e0;
  border-radius: 5px;
  height: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #28a745;
  transition: width 0.3s ease;
}

.status-text {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.images {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.image-block {
  text-align: center;
  flex: 1;
}

img {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  margin-top: 10px;
}