.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.wizard-steps .progress {
  height: 3px;
}

.step-circle {
  width: 45px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  color: #fff;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.step-circle:hover {
  background-color: #007FBAFF;
}

.step-line {
  background-color: var(--bs-primary);
}

.active-step {
  background-color: #007FBAFF;
}

.wizardGroup {
  border: 1px solid rgb(238,238,238);
  padding: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.wizard-navigation-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.wizard-navigation-button:hover {
  background-color: #0056b3;
}

