/* Styles for Step 3 Questions */
#step-content-3 .question-item {
  padding: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-family: 'Nunito Sans', sans-serif;
}

#step-content-3 .question-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

#step-content-3 .question-options {
  margin-bottom: 16px;
}

#step-content-3 .question-field {
  margin-bottom: 12px;
}

#step-content-3 input[type="text"],
#step-content-3 textarea,
#step-content-3 select {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

#step-content-3 .action-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#step-content-3 .action-buttons button {
  padding: 16px 32px;
  font-size: 1.4rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  margin: 0;
  height: 60px;
}

#step-content-3 .save-btn {
  background-color: var(--primary-color);
  color: white;
}

#step-content-3 .delete-btn {
  background-color: #f44336;
  color: white;
}

#step-content-3 .skip-btn {
  background-color: #9e9e9e;
  color: white;
}

#step-content-3 .action-buttons button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#step-content-3 .action-buttons button:active {
  transform: translateY(0);
}