#onboarding-quiz {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  
  #onboarding-quiz h2, #onboarding-quiz h3 {
    width: 100%;
  }

  .quiz-step {
    display: none;
  }
  
  .quiz-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
  }
  
  .options label {
    flex: 1 1 45%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
    box-shadow: 0 0 10px #cccccc;
  }

  .options label input, .options label select {
    margin-top: 5px;
  }
  
  .options label input[type="text"]::placeholder {
    color: #999;
    opacity: 1;
  }

  .options input[type="radio"],
  .options input[type="checkbox"] {
    display: none;
  }
  
  .options input:checked + span,
  .options label:has(input:checked) {
    background: #0F4138;
    font-weight: 600;
    color: #FBAE00;
  }
  
  .quiz-nav {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
  }
  
  .quiz-nav button {
    background: #0F4138;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .quiz-nav button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 600px) {
    .options label {
      flex: 1 1 100%;
    }
  }
  