#tpt-quiz {
  max-width: 640px;
  margin: 0 auto;
  font-family: Arial, sans-serif !important;
  color: #1a1a1a;
}

.tpt-progress {
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin: 20px 0;
}

.tpt-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: #244b5a;
  transition: width 0.3s ease;
}

.tpt-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
}

.tpt-title {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.tpt-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.tpt-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tpt-option {
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-family: Arial, sans-serif;
}

.tpt-option:hover {
  border-color: #244b5a;
  box-shadow: 0 0 0 3px rgba(36, 75, 90, 0.1);
}

.tpt-option.selected {
  border-color: #244b5a;
  background: #f0f6f8;
}

.tpt-option .tpt-emoji {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}

.tpt-label {
  font-weight: 600;
}

.tpt-feedback {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #fdf5e6;
  font-size: 15px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.tpt-hidden {
  display: none !important;
}

.tpt-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.tpt-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.tpt-btn.primary {
  background: #244b5a;
  color: #fff;
}

.tpt-btn.secondary {
  background: #eee;
  color: #244b5a;
}

.tpt-result-badge {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Results styling */
.tpt-result-block {
  padding: 20px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.tpt-result-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.tpt-result-block h4 {
  font-size: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.tpt-subheading {
  margin-top: 16px;
  font-weight: 600;
  color: #244b5a;
font-family: Arial, sans-serif !important;
}

.tpt-result-block ul {
  margin: 12px 0 20px 20px;
}

.tpt-result-block blockquote {
  border-left: 4px solid #244b5a;
  padding-left: 12px;
  margin: 12px 0;
  color: #555;
  font-style: italic;
}

.tpt-cta-note {
  margin: 16px 0;
  font-size: 15px;
}

.tpt-cta {
  text-align: center;
  margin-top: 20px;
}

.tpt-cta .tpt-btn {
  padding: 14px 28px;
  font-size: 16px;
}


.tpt-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #244b5a; /* Blue */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === Results Badge (chips) === */
.tpt-result-badge span {
  display: inline-block;
  background: #f0f6f8;
  color: #244b5a;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 0 4px;
  text-transform: capitalize;
}

/* === Main Results Title === */
#tpt-dynamic-result .tpt-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 24px 0 20px;
  color: #244b5a;
  line-height: 1.3;
}

/* === Subsection Headings === */
.tpt-subheading {
  font-size: 18px;
  font-weight: 700;
  color: #244b5a;
  margin-top: 24px;
  margin-bottom: 12px;
  border-left: 4px solid #244b5a;
  padding-left: 10px;
}

/* === Helpful List === */
.tpt-result-block ul {
  background: #f9fafa;
  padding: 16px 20px;
  border-radius: 12px;
  list-style: none;
  margin: 12px 0 20px 0;
}

.tpt-result-block ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.tpt-result-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #244b5a;
  font-size: 14px;
}

/* === Highlighted Insight Quote === */
.tpt-result-block blockquote {
  background: #f0f6f8;
  border-left: 5px solid #244b5a;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 16px;
  font-style: italic;
  color: #244b5a;
  border-radius: 12px;
  line-height: 1.5;
}

/* === Call-to-Action Button === */
.tpt-cta {
  text-align: center;
  margin-top: 30px;
}

.tpt-cta .tpt-btn {
  background: #244b5a;
  color: #fff;
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.tpt-cta .tpt-btn:hover {
  background: #1c3a46;
  transform: translateY(-2px);
}

