.step {
  display: none;
}

.step.active {
  display: block;
}

button {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

button.prev {
  background-color: #6c757d;
}

.request-input-select {
  height: 56px !important;
  padding-top: 8px;
  border-radius: 0 !important;
}

input[type="date"] {
  font-size: 20px;
  border: 1px solid #e0e2e3;
  padding-left: 26px;
  padding-right: 26px;
}

#preview {
  display: flex;
  flex-wrap: wrap;
}

.preview-image {
  position: relative;
  margin: 10px;
}

.preview-image img {
  max-width: 200px;
  max-height: 200px;
}

.remove-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: rgb(196, 170, 25);
  color: white;
  border: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.car-container {
  
 
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.car img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.car-step-text {
  font-size: 18px;
  margin: 15px 0;
}

.car-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.car button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.car-prev {
  background-color: #bbb;
}

.car-next {
  background-color: #007bff;
  color: white;
}

.car button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}
