
.container {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3b5ce 0%, #ffdee9 50%, #fff6f9 100%);;
  padding: 40px 20px;
}

.wizardContainer {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
}

.wizardPagination {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  position: sticky;
  top: 20px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wizardTitle {
  font-size: 18px;
  font-weight: 600;
  color: #333 !important;
  margin-bottom: 20px;
  text-align: center;
}

.wizardSteps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wizardStep {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stepNumber {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.stepLabel {
  font-size: 14px;
  font-weight: 500;
}

.wizardStep.pending {
  background: #f8f9fa;
}

.wizardStep.pending .stepNumber {
  background: #e9ecef;
  color: #6c757d;
}

.wizardStep.completed {
  background: #fff4f8;
}

.wizardStep.completed .stepNumber {
  background: #f3b6cf;
  color: white;
}

.wizardStep.current {
  background: #f3b6ce;
  color: white;
}

.wizardStep.current .stepNumber {
  background: white;
  color: #f3b6ce;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  max-width: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  justify-content: space-between;
}

.questionTitle {
  font-size: 24px;
  font-weight: 600;
  color: #333 !important;
  margin-bottom: 30px;
  line-height: 1.4;
}

.answersContainer {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.answerCard {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #495057;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
}

.answerCard:hover {
  background: #e9ecef;
  border-color: #f3b6ce;
  transform: translateY(-2px);
}

.answerCard.selected {
  background: #f3b6ce;
  border-color: #f3b6ce;
  color: white;
  transform: translateY(-2px);
}

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

.button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.backButton {
  background: #6c757d;
  color: white;
}

.backButton:hover:not(:disabled) {
  background: #5a6268;
}

.backButton:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.nextButton {
  background: #f3b6ce;
  color: white;
}

.nextButton:hover:not(:disabled) {
  background: #5a6fd8;
}

.nextButton:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: 18px;
  color: #f3b6ce;
}

@media (max-width: 768px) {
  .wizardContainer {
    flex-direction: column;
    align-items: center;
  }

  .wizardPagination {
    position: relative;
    top: 0;
    min-width: auto;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    min-height: unset;
  }

  .wizardSteps {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .wizardStep {
    flex-direction: column;
    text-align: center;
    min-width: 30px;
    padding: 3px;
  }

  .stepLabel {
    font-size: 12px;
  }

  .card {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .questionTitle {
    font-size: 20px;
  }
  
  .answerCard {
    padding: 15px;
    font-size: 14px;
    min-width: 120px;
    max-width: none;
    flex: 1 1 calc(50% - 10px);
  }
  
  .answersContainer {
    gap: 10px;
  }
  
  .navigation {
    flex-direction: row;
    gap: 10px;
  }
  
  .button {
    width: 100%;
  }
}
