/* Questionnaire Styles */
.questionnaire-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.progress-container {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #4CAF50;
  transition: width 0.3s ease;
  width: 0%;
}

.question {
  margin-bottom: 20px;
}

.question h3 {
  margin-bottom: 20px;
  color: #333;
}

/* Answer Styles */
.answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-option:hover {
  border-color: #4CAF50;
  background-color: #f9f9f9;
}

.radio-option input[type="radio"] {
  margin-right: 12px;
}

.radio-text {
  font-size: 16px;
}

.dropdown {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
}

/* NPS Styles */
.nps-container {
  text-align: center;
}

.nps-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.nps-options {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.nps-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex: 1;
}

.nps-option input[type="radio"] {
  display: none;
}

.nps-number {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  transition: all 0.2s ease;
  font-weight: bold;
}

.nps-option:hover .nps-number {
  border-color: #4CAF50;
  background-color: #f0f9f0;
}

.nps-option input[type="radio"]:checked + .nps-number {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.nps-text {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 5px;
}

/* Recommendation Styles */
.recommendation-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.recommendation-container h2 {
  color: #333;
  margin-bottom: 10px;
}

.recommendation-container h3 {
  color: #4CAF50;
  margin-bottom: 20px;
}

.recommendation-container ol {
  text-align: left;
  margin-left: 20px;
}

.recommendation-container li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Button Styles */
.back-button, .restart-btn {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 20px;
}

.restart-btn {
  background-color: #4CAF50;
  margin-top: 30px;
}

.back-button:hover {
  background-color: #5a6268;
}

.restart-btn:hover {
  background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nps-options {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nps-option {
    flex: 0 0 calc(20% - 8px);
  }
  
  .radio-option {
    padding: 12px;
  }
}