/* ==========================
   Virtual Task Funnel Styles
   Scoped to #vtf-funnel only
   ========================== */

#vtf-funnel .vtf-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Headings */
#vtf-funnel h2,
#vtf-funnel h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

/* Step option buttons (Next / Back / Choices) */
#vtf-funnel .btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 10px auto;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: #007bff;
  color: #fff !important;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
}
#vtf-funnel .btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Multi-choice checkboxes (Step 4) */
#vtf-funnel .vtf-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 20px;
  margin: 20px 0;
  text-align: left;
}
#vtf-funnel .vtf-checkboxes label {
  display: flex;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}
#vtf-funnel .vtf-checkboxes input {
  margin-right: 8px;
  transform: scale(1.1);
}

/* Step 5 form fields */
#vtf-funnel .vtf-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;   /* nice spacing between fields */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

/* Results section */
#vtf-funnel .vtf-result {
  text-align: center;
}
#vtf-funnel .vtf-result h3 {
  text-align: center;
}
#vtf-funnel .vtf-result ul {
  list-style: disc;
  margin: 15px 0 20px 30px;
  text-align: left;
}

/* Result buttons */
#vtf-funnel .vtf-result .btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 12px auto;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background: #007bff;
  color: #fff !important;
  transition: background 0.3s ease, transform 0.2s ease;
}
#vtf-funnel .vtf-result .btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}
