/* Hide all sections by default */
section {
  display: none;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Show only the active section */
.active-section {
  display: block;
}

/* Just for better look */
.form-container, .finish-container {
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.car-area {
  margin-top: 20px;
  position: relative;
  min-height: 300px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-area img {
  max-width: 100%;
  height: auto;
}

.stickers img {
  width: 60px;
  margin: 5px;
  cursor: grab;
}
