.nedflex-test-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.3s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.answer-option {
  margin-bottom: 1rem;
}

.answer-option .form-check-label {
  cursor: pointer;
  transition: all 0.3s ease;
  border-color: #dee2e6 !important;
}

.answer-option .form-check-label:hover {
  background-color: #f8f9fa;
  border-color: var(--clr-primary-700) !important;
}

.answer-option .form-check-input:checked + .form-check-label {
  background-color: var(--clr-primary-700);
  color: white;
  border-color: var(--clr-primary-700) !important;
}

.answers-container .form-check-input {
  display: none;
}

.btn-prev:disabled {
  opacity: 0.5;
}

.form-navigation {
  position: sticky;
  bottom: 20px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
