/* Screening Page Styles */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
  margin: 0;
}

.screening-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 700px;
  width: 100%;
  box-sizing: border-box;
}

.screening-container h2 {
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
}

.question-block {
  margin-bottom: 30px;
  text-align: center;
}

.question-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.choice-button {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #007bff;
  background: white;
  color: #007bff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 120px;
}

.choice-button:hover {
  background: #007bff;
  color: white;
}

.choice-button:active {
  transform: scale(0.98);
}

.choice-button.selected {
  background: #007bff;
  color: white;
}

.hidden {
  display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .screening-container {
    padding: 30px 20px;
  }
  
  .screening-container h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .question-text {
    font-size: 16px;
  }
  
  .button-group {
    gap: 12px;
  }
  
  .choice-button {
    padding: 10px 30px;
    font-size: 15px;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }
  
  .screening-container {
    padding: 25px 15px;
  }
  
  .screening-container h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .question-text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .button-group {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  
  .choice-button {
    width: 100%;
    padding: 12px 20px;
    min-width: unset;
  }
}
