/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Modern, clean, responsive quiz styles */
.fzk-quiz-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  /* Brand variables tuned for https://www.zikodlazdrowia.org/ */
  --fzk-primary: #B40202;        /* main red */
  --fzk-primary-dark: #9A0202;   /* hover/darker */
  --fzk-primary-soft: #fff5f5;   /* subtle bg */
  --fzk-border: #e2e8f0;
  --fzk-text-color: #313131;     /* text color */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  /* Ensure sticky positioning works by preventing parent overflow issues */
  contain: layout;
}

/* Header */
.fzk-quiz-header {
  background: white;
  padding: 20px 40px;
  border-bottom: 1px solid var(--fzk-border);
  margin-bottom: 0;
  margin-bottom: 24px;
}

.fzk-quiz-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fzk-quiz-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fzk-text-color);
}

.fzk-quiz-logo img {
  height: 40px;
  width: auto;
}

.fzk-quiz-progress-header {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #666;
}

.fzk-quiz-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fzk-header-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(35%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.fzk-header-text {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #585858;
  line-height: 150%;
}

/* Main Layout */
.fzk-quiz-main {
  flex: 1;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  min-height: 100vh;
}

.fzk-quiz-content {
  flex: 1;
  background: white;
  min-height: calc(100vh - 80px);
}

.fzk-quiz-sidebar {
  width: 100%;
  max-width: 468px;
  position: sticky;
  top: 0;
  height: 100%;
  overflow: hidden;
  align-self: flex-start;
  /* Ensure sticky positioning works across different themes */
  position: -webkit-sticky; /* Safari support */
  z-index: 10;
  /* Force a new stacking context */
  transform: translateZ(0);
  /* Ensure the element has a proper containing block */
  will-change: transform;
}

.fzk-quiz-sidebar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro Screen */
.fzk-quiz-intro {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.fzk-quiz-intro-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--fzk-primary);
}

.fzk-quiz-intro-subtitle {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 14px;
  color: var(--fzk-primary);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 150%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.fzk-planer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fzk-quiz-intro-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 24px;
  line-height: 104%;
  text-align: center;
}

.fzk-quiz-intro-description {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  color: var(--fzk-text-color);
  line-height: 150%;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.fzk-quiz-start-btn {
  background: var(--fzk-primary);
  color: white;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 24px;
}

.fzk-quiz-start-btn:hover {
  background: var(--fzk-primary-dark);
}

.fzk-quiz-privacy {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  color: #585858;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

.fzk-quiz-privacy-icon {
  font-size: 16px;
}

.fzk-info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fzk-quiz-progress-intro {
  width: 100%;
  height: 8px;
  background: #F2F2F2;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.fzk-quiz-progress-intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  background: #E22F2F;
  border-radius: 0;
  transition: width 0.3s ease;
}

/* Progress Bar */
.fzk-quiz-progress {
  margin-bottom: 30px;
}

/* Floating Bottom Section */
.fzk-quiz-floating-bottom {
  position: sticky;
  bottom: 0;
  background: white;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.fzk-quiz-floating-progress {
  width: 100%;
  max-width: none;
}

.fzk-quiz-floating-progress-bar {
  width: 100%;
  height: 8px;
  background: #F2F2F2;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 4px;
}

.fzk-quiz-floating-progress-inner {
  height: 100%;
  background: #E22F2F;
  border-radius: 0;
  transition: width 0.3s ease;
}

.fzk-quiz-floating-progress-text {
  display: none;
}

.fzk-quiz-finish-btn {
  background: #B40202;
  color: white;
  border: none;
  padding-top: 12px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 14px;
  gap: 8px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 106%;
  letter-spacing: -1%;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
  opacity: 1;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fzk-quiz-finish-btn:hover {
  background: #9A0202;
}

.fzk-quiz-finish-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.fzk-quiz-progress-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.fzk-quiz-progress-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fzk-primary);
  border-radius: 0;
}

.fzk-quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: #F2F2F2;
  border-radius: 0;
  overflow: hidden;
}

.fzk-quiz-progress-inner {
  height: 100%;
  background: #E22F2F;
  border-radius: 0;
  transition: width 0.3s ease;
}
.fzk-quiz-step-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--fzk-text-color);
  text-align: left;
  font-weight: 700;
  line-height: 104%;
  padding: 40px 40px 0 40px;
}

.fzk-quiz-step-desc {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--fzk-text-color);
  margin-bottom: 32px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding: 0 40px;
}
.fzk-quiz-question {
  margin: 0 0 24px 0;
  padding: 0 40px 0 40px;
}

/* Group styling */
.fzk-quiz-group {
  margin: 0 0 24px 0;
  padding: 10px 40px;
  background: white;
  border-radius: 0;
  position: relative;
}

.fzk-quiz-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.fzk-quiz-group-icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  opacity: 1;
}

.fzk-quiz-group-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* Group icon variations */
.fzk-icon-health::before { content: "🏥"; }
.fzk-icon-travel::before { content: "✈️"; }
.fzk-icon-work::before { content: "💼"; }
.fzk-icon-children::before { content: "👶"; }
.fzk-icon-elderly::before { content: "👴"; }
.fzk-icon-pregnancy::before { content: "🤱"; }
.fzk-icon-chronic::before { content: "🩺"; }
.fzk-icon-lifestyle::before { content: "🏃"; }

.fzk-quiz-group-content {
  flex: 1;
}

.fzk-quiz-group-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px; /* typography/header/s */
  line-height: 104%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1E1E1E;
  text-transform: none;
}

.fzk-quiz-group-description {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1em;
  color: var(--fzk-text-color);
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  font-style: italic;
}

/* Conditional group styling */
.fzk-quiz-group.conditional-question {
  background: linear-gradient(135deg, #f7fafc 0%, var(--fzk-primary-soft) 100%);
  position: relative;
}

.fzk-quiz-group.conditional-question::before {
  content: "🔗";
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 16px;
  color: var(--fzk-primary);
}

/* Conditional question styling */
.fzk-quiz-question.conditional-question {
  background: #f7fafc;
  padding: 16px;
  border-radius: 0;
  margin: 0 0 24px 0;
  position: relative;
}

.fzk-quiz-question.conditional-question .fzk-quiz-question-title {
  color: #313131;
  font-weight: 600;
}
.fzk-quiz-question-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px; /* typography/body/l */
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #313131;
  margin-bottom: 8px;
}

.fzk-quiz-question-description {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px; /* typography/body/s */
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #585858;
  margin-bottom: 16px;
}




.fzk-quiz-answers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fzk-quiz-answers input[type="radio"],
.fzk-quiz-answers input[type="checkbox"] {
  display: none;
}

.fzk-quiz-answers label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  width: auto;
  min-width: 102px;
  max-height: 39px;
  opacity: 1;
  border-width: 1px;
  padding: 12px 16px 12px 12px;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border 0.2s, color 0.2s;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #313131;
  justify-content: flex-start;
  margin-left: 8px;
}

.fzk-quiz-answers label:hover {
  background: #f7fafc;
  border-color: #E22F2F;
}

.fzk-quiz-answers input[type="radio"]:checked + label,
.fzk-quiz-answers input[type="checkbox"]:checked + label,
.fzk-quiz-answers label.selected {
  background: #E8F0FE;
  border: 2px solid #E22F2F;
  color: #313131;
}

/* Custom radio button styling */
.fzk-quiz-answers label::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1px solid #919191;
  border-radius: 50%;
  background: #FFFFFF;
  margin-right: 8px;
  flex-shrink: 0;
  transition: all 0.2s;
  pointer-events: none;
}

.fzk-quiz-answers input[type="radio"]:checked + label::before,
.fzk-quiz-answers input[type="checkbox"]:checked + label::before,
.fzk-quiz-answers label.selected::before {
  background: #E22F2F;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #E22F2F;
}
/* .fzk-quiz-answers label.selected::after {
  content: '\2714';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: #fff;
  border: 2px solid #3182ce;
  color: #3182ce;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  box-shadow: none;
} */
.fzk-quiz-nav {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 0 40px 40px 40px;
}
.fzk-quiz-nav button,
.fzk-quiz-restart {
  background: var(--fzk-primary);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 24px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.fzk-quiz-nav button:hover,
.fzk-quiz-restart:hover {
  background: var(--fzk-primary-dark);
}

/* OK Button specific styling */
.fzk-quiz-submit {
  width: 127px;
  height: 42px;
  opacity: 1;
  gap: 8px;
  padding: 12px 14px;
  background: #B40202 !important;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fzk-quiz-submit:hover {
  background: #9A0202 !important;
}
.fzk-quiz-results {
  text-align: left;
  padding: 40px;
}

.fzk-quiz-results h2 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 104%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1E1E1E;
  margin-bottom: 24px;
}
.fzk-quiz-summary {
  margin-bottom: 24px;
  text-align: left;
}
.fzk-quiz-summary ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0 0;
}
.fzk-quiz-summary ul ul {
  margin-left: 0;
  padding-left: 18px;
}
.fzk-quiz-summary li,
.fzk-quiz-recommendations li {
  margin-bottom: 6px;
}
.fzk-quiz-recommendations {
  margin-bottom: 24px;
  text-align: left;
}
/* Vaccinations accordion */
.fzk-vaccinations-accordion { display: block; }
.fzk-acc-item {
  width: 100%;
  min-height: 50px;
  opacity: 1;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 14px;
  padding-left: 12px;
  gap: 20px;
  border-bottom-width: 1px;
  border-bottom: 1px solid #E5E5E5;
  border-radius: 0;
  overflow: visible;
  margin: 16px 0;
  background: #fff;
}
.fzk-acc-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 104%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: none;
  cursor: pointer;
  position: relative;
  color: var(--fzk-primary);
}
.fzk-acc-toggle::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('../assets/icons/arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.fzk-acc-toggle.active::after {
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) saturate(100%) invert(11%) sepia(94%) saturate(7491%) hue-rotate(0deg) brightness(70%) contrast(118%);
}
.fzk-acc-toggle:hover { background: transparent; }
.fzk-acc-toggle:focus { outline: none; border: none; }
.fzk-acc-panel { 
  padding: 16px 0; 
  background: var(--neutral-200, #F2F2F2); 
  display: none;
  overflow: visible;
}

.fzk-acc-toggle.active + .fzk-acc-panel {
  display: block;
}

.fzk-acc-item:has(.fzk-acc-toggle.active) {
  background: var(--neutral-200, #F2F2F2);
}
.fzk-vac-detail { 
  display: block; 
  padding: 16px 0; 
}
.fzk-vac-detail strong { 
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #313131;
  display: block;
  margin-bottom: 8px;
}
.fzk-vac-detail div {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration: none;
  color: #313131;
}

/* HTML content styling for vaccination details */
.fzk-vac-content {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #313131;
}

.fzk-vac-content p {
  margin: 0 0 12px 0;
}

.fzk-vac-content p:last-child {
  margin-bottom: 0;
}

.fzk-quiz-results .fzk-vac-content a {
  color: #B40202 !important;
  text-decoration: underline !important;
  transition: color 0.2s ease;
}

.fzk-quiz-results .fzk-vac-content a:hover {
  color: #9A0202 !important;
  text-decoration: underline !important;
}

.fzk-vac-content ul,
.fzk-vac-content ol {
  margin: 8px 0;
  padding-left: 20px;
}

.fzk-vac-content li {
  margin-bottom: 4px;
}

.fzk-vac-content strong {
  font-weight: 600;
  color: #1E1E1E;
}

.fzk-vac-content em {
  font-style: italic;
}

.fzk-vac-content br {
  line-height: 1.5;
}

/* Star icon styling */
.fzk-star-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* Pin icon styling */
.fzk-pin-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* Recipe icon styling */
.fzk-recipe-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* Calendar icon styling */
.fzk-calendar-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* Element icon styling */
.fzk-element-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

/* Center align the icons and text */
.fzk-vac-detail strong {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.fzk-more-section { margin-top: 16px; }
.fzk-more-toggle { background: #fff; color: var(--fzk-primary); border: 1px solid var(--fzk-primary); padding: 8px 12px; border-radius: 0; cursor: pointer; }
.fzk-more-toggle:hover { background: var(--fzk-primary-soft); }

/* Highlight top 3 recommendations */
.fzk-vaccinations-top .fzk-acc-item {
  background: #fff;
  border-radius: 0;
  width: 100%;
}
.fzk-quiz-recommendations ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0 0;
}

/* Result page dynamic content and button */
.fzk-result-dynamic-content {
  margin: 32px 0;
  opacity: 1;
  border-width: 1px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 18px;
  padding-left: 16px;
  gap: 8px;
  border: 1px solid #FFD9D9;
  background: #FFF3F3;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: var(--fzk-text-color);
}

.fzk-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.fzk-disclaimer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fzk-disclaimer-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #B40202;
}

.fzk-disclaimer-content {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  color: #313131;
}

.fzk-result-button-container {
  text-align: left;
  margin: 32px 0;
}

.fzk-result-action-btn {
  background: var(--fzk-primary);
  color: white;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.fzk-result-action-btn:hover {
  background: var(--fzk-primary-dark);
}

/* Remove underlines from all text and buttons on results page */
.fzk-quiz-results * {
  text-decoration: none !important;
}

.fzk-quiz-results a {
  color: #fff !important;
  text-decoration: none !important;
}

.fzk-quiz-results button {
  text-decoration: none !important;
}

/* Print styles - remove all text underlines */
@media print {
  /* Make vaccination titles red in PDF */
  .fzk-acc-toggle {
    color: #B40202 !important;
  }
  
  /* Universal reset for all elements */
  *,
  *::before,
  *::after {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
  }
  
  /* Specific link targeting */
  a,
  a:link,
  a:visited,
  a:hover,
  a:active,
  a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: inherit !important;
    border-bottom: none !important;
    border: none !important;
  }
  
  /* Target all possible selectors */
  .fzk-quiz-results,
  .fzk-quiz-results *,
  .fzk-quiz-results a,
  .fzk-quiz-results a:link,
  .fzk-quiz-results a:visited,
  .fzk-quiz-results a:hover,
  .fzk-quiz-results a:active,
  .fzk-quiz-results a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: inherit !important;
  }
  
  .fzk-vac-content,
  .fzk-vac-content *,
  .fzk-vac-content a,
  .fzk-vac-content a:link,
  .fzk-vac-content a:visited,
  .fzk-vac-content a:hover,
  .fzk-vac-content a:active,
  .fzk-vac-content a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: inherit !important;
  }
  
  .fzk-quiz-results .fzk-vac-content,
  .fzk-quiz-results .fzk-vac-content *,
  .fzk-quiz-results .fzk-vac-content a,
  .fzk-quiz-results .fzk-vac-content a:link,
  .fzk-quiz-results .fzk-vac-content a:visited,
  .fzk-quiz-results .fzk-vac-content a:hover,
  .fzk-quiz-results .fzk-vac-content a:active,
  .fzk-quiz-results .fzk-vac-content a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: inherit !important;
  }
}

/* Results floating bottom */
.fzk-results-floating-bottom {
  position: sticky;
  bottom: 0;
  background: white;
  padding-top: 20px;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.fzk-quiz-restart-btn {
  background: #F2F2F2;
  color: #666666;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  flex: 0 0 auto;
}

.fzk-quiz-restart-btn:hover {
  background: #E5E5E5;
  color: #333333;
}

.fzk-quiz-download-btn {
  background: var(--fzk-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.fzk-quiz-download-btn:hover {
  background: var(--fzk-primary-dark);
}

.fzk-quiz-download-btn svg {
  flex-shrink: 0;
}
.fzk-quiz-loader {
  text-align: center;
  color: #3182ce;
  font-size: 1.2em;
  margin: 40px 0;
}
/* Responsive Design */
@media (max-width: 768px) {
  .fzk-quiz-main {
    flex-direction: column;
  }
  
  .fzk-quiz-sidebar {
    width: 100%;
    order: 2;
    position: relative;
    height: auto;
  }
  
  .fzk-quiz-content {
    order: 1;
  }
  
  .fzk-quiz-header {
    padding: 20px;
  }
  
  .fzk-quiz-step-title {
    padding: 20px 20px 0 20px;
  }
  
  .fzk-quiz-step-desc {
    padding: 0 20px;
  }
  
  .fzk-quiz-question {
    padding: 0 20px 0 20px;
  }
  
  .fzk-quiz-group {
    padding: 20px;
  }
  
  .fzk-quiz-nav {
    padding: 0 20px 20px 20px;
  }
  
  .fzk-quiz-intro {
    padding: 20px;
  }
  
  .fzk-quiz-results {
    padding: 20px;
  }
  
  .fzk-quiz-results h2 {
    font-size: 28px;
  }
  
  .fzk-quiz-intro-title {
    font-size: 28px;
  }
  
  .fzk-quiz-intro-description {
    font-size: 16px;
  }
  
  .fzk-quiz-header-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .fzk-quiz-header-info {
    justify-content: center;
  }
  
  .fzk-header-text {
    font-size: 14px;
  }
  
  .fzk-quiz-progress-header {
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .fzk-quiz-header {
    padding: 16px;
  }
  
  .fzk-quiz-step-title {
    padding: 16px 16px 0 16px;
  }
  
  .fzk-quiz-step-desc {
    padding: 0 16px;
  }
  
  .fzk-quiz-question {
    padding: 0 16px 0 16px;
  }
  
  .fzk-quiz-group {
    padding: 16px;
  }
  
  .fzk-quiz-nav {
    padding: 0 16px 16px 16px;
  }
  
  .fzk-quiz-intro {
    padding: 16px;
  }
  
  .fzk-quiz-results {
    padding: 16px;
  }
  
  .fzk-quiz-results h2 {
    font-size: 24px;
  }
  
  .fzk-quiz-intro-title {
    font-size: 24px;
  }
  
  .fzk-quiz-intro-description {
    font-size: 14px;
  }
  
  .fzk-quiz-step-title {
    font-size: 24px;
  }
  
  .fzk-quiz-group-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .fzk-quiz-group-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .fzk-quiz-group-title {
    font-size: 1.2em;
  }
  
  .fzk-quiz-sidebar-title {
    font-size: 20px;
  }
  
  .fzk-quiz-floating-bottom {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
  }
  
  .fzk-quiz-floating-progress {
    max-width: 100%;
    order: 1;
  }
  
  .fzk-quiz-finish-btn {
    order: 2;
    width: 100%;
    min-width: auto;
  }
  
  .fzk-result-dynamic-content {
    margin: 24px 0;
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 16px;
    padding-left: 14px;
    font-size: 15px;
  }
  
  .fzk-disclaimer-title {
    font-size: 16px;
  }
  
  .fzk-disclaimer-content {
    font-size: 15px;
  }
  
  .fzk-result-button-container {
    margin: 24px 0;
  }
  
  .fzk-result-action-btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }
  
  .fzk-results-floating-bottom {
    padding: 12px 0;
    flex-direction: column;
    gap: 12px;
  }
  
  .fzk-quiz-restart-btn,
  .fzk-quiz-download-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .fzk-acc-item {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fzk-acc-item {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-left: 10px;
  }
  
  .fzk-acc-toggle::after {
    right: 10px;
  }
}

/* Promo text styling */
.fzk-promo-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #313131;
  max-width: 512px;
}

/* Fix sticky positioning issues across different themes */
/* Ensure parent containers don't interfere with sticky positioning */
.fzk-quiz-container * {
  /* Reset any potential overflow issues from parent themes */
  box-sizing: border-box;
}

/* Override potential parent theme issues that break sticky positioning */
.fzk-quiz-container {
  /* Ensure no parent overflow issues */
  overflow: visible !important;
}

.fzk-quiz-main {
  /* Ensure no parent overflow issues */
  overflow: visible !important;
}

.fzk-quiz-content {
  /* Ensure no parent overflow issues */
  overflow: visible !important;
}

/* Specific fixes for common theme issues */
.fzk-quiz-container {
  /* Force a new stacking context to isolate sticky positioning */
  isolation: isolate;
  /* Ensure the container doesn't have height constraints that break sticky */
  min-height: 100vh;
  height: auto;
}

/* Additional sticky positioning fixes - cleaned up */

/* Fix for themes that might have conflicting CSS */
#fzk-quiz {
  /* Ensure the quiz container has proper positioning */
  position: relative;
  /* Prevent any parent overflow from breaking sticky */
  overflow: visible;
}