.body-container {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  /* min-height: 100vh; */
  font-family: "Arial", sans-serif;
}

.main-container {
  background: white;
  /* border-radius: 15px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px auto;
  max-width: 100%;
}

.progress-bar-container {
  background: #f8f9fa;
  padding: 30px 0;
  border-bottom: 2px solid #e9ecef;
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  /* font-size: 18px; */
  margin-right: 15px;
  position: relative;
  z-index: 2;
}

.step-number.active {
  background: #1e3c72;
  color: white;
  border: 3px solid #1e3c72;
}

.step-number.inactive {
  background: #e9ecef;
  color: #6c757d;
  border: 3px solid #dee2e6;
}

.step-text {
  font-weight: 600;
  color: #1e3c72;
  /* font-size: 14px; */
  text-transform: uppercase;
}

.step-text.inactive {
  color: #6c757d;
}

.step-connector {
  width: 100px;
  height: 3px;
  background: #dee2e6;
  position: relative;
}

.content-section {
  padding: 40px;
  background: white;
}

.form-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 40px;
  margin: 30px 0;
}

.btn-yamaha {
  background-color: rgb(0, 102, 255);
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-yamaha:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
  color: white;
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 15px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.25);
}

.terms-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
}

.stars {
  color: #f39c12;
  font-size: 24px;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .rev-win-title {
    font-size: 48px;
  }

  .motorcycle-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    margin: 0 8px;
    flex-direction: column; /* stack number and label vertically */
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px; /* make number readable */
    margin-right: 0;
    margin-bottom: 5px;
  }

  .step-text {
    font-size: 12px;
    max-width: 80px; /* prevent long text from wrapping badly */
    text-transform: uppercase;
  }

  .step-connector {
    width: 30px;
    height: 2px;
  }

  .step-indicator {
    flex-wrap: wrap; /* prevents overflow */
  }
}

/* invalid  */
.is-invalid {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.dataTables_wrapper .dt-buttons .btn {
  margin-right: 0.5rem; /* space between buttons */
}
