#jwco-coaching-quiz-wrapper {
  display: flex !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-height: 500px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.jwco-coaching-quiz-left {
  flex: 0 0 300px !important;
  width: 300px !important;
  min-width: 200px !important;
  background: #fff;
  padding: 48px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  box-shadow: 2px 0 16px rgba(0,0,0,0.04);
  z-index: 2;
}
.jwco-coaching-quiz-circle {
  width: 120px;
  height: 120px;
  background: #F5B400;
  border-radius: 50%;
  position: absolute;
  left: 19px;
  top: 70px;
  z-index: 1;
}
.jwco-coaching-quiz-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #111;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.jwco-result-plus-icon {
  font-size: 12rem !important;
    font-weight: bold;
    margin-top: -150px !important;
    margin-bottom: -60px !important;
    color: #F5B400;
}
.jwco-coaching-quiz-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.jwco-coaching-quiz-progress {
  width: 100%;
  margin-top: 10px !important;
  position: relative;
  z-index: 2;
}
.jwco-coaching-quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 6px;
  overflow: hidden;
}
.jwco-coaching-quiz-progress-fill {
  height: 100%;
  background: #F5B400;
  width: 0%;
  transition: width 0.3s;
}
.jwco-coaching-quiz-progress-label {
  font-size: 0.95rem;
  color: #444;
}


.jwco-coaching-quiz-right {
  flex: 1 1 0 !important;
  min-width: 600px !important;
  width: auto !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fafbfc;
  padding: 50px 40px 40px 40px;
  justify-content: flex-start;
}
.jwco-coaching-quiz-context {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  align-items: center;
}
.jwco-coaching-quiz-plus {
  color: #F5B400;
  font-size: 11rem;
  font-weight: bold;
  margin-right: 16px;
  line-height: 1;
}
.jwco-coaching-quiz-context-text {
  color: #444;
  font-size: 1.2rem;
  line-height: 1.5;
}
.jwco-coaching-quiz-question {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 18px;
  color: #222;
}
.jwco-coaching-quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.jwco-coaching-quiz-answer {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}


.jwco-coaching-quiz-answer:hover, .jwco-coaching-quiz-answer input:checked ~ .jwco-coaching-quiz-answer-key {
  border: 1.5px solid #F5B400;
  box-shadow: 0 2px 8px rgba(255,214,0,0.08);
}
.jwco-coaching-quiz-answer input[type="radio"] {
  margin-right: 12px;
  accent-color: #F5B400;
}
.jwco-coaching-quiz-answer-key {
  font-weight: bold;
  color: #F5B400;
  margin-right: 10px;
}
.jwco-coaching-quiz-next {
  background: #F5B400;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}
.jwco-coaching-quiz-next:hover {
  background: #FFC400;
}

.jwco-result-only {
  display: flex;
}
.jwco-result-only .jwco-coaching-quiz-left {
  display: none !important;
}
.jwco-result-only .jwco-coaching-quiz-right {
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 48px 40px 40px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.jwco-result-centered {
  width: 100%;
  text-align: center;
}
.jwco-result-centered h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.jwco-result-centered h3 {
  font-size: 1.5rem;
  margin: 18px 0 10px 0;
  color: #222;
}
.jwco-result-centered .jwco-coaching-quiz-score {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.jwco-result-centered .jwco-coaching-quiz-interpretation,
.jwco-result-centered .jwco-coaching-quiz-reflection {
  text-align: left;
  margin: 0 auto 16px auto;
  max-width: 600px;
  font-size: 1.08rem;
}
.jwco-result-centered .jwco-coaching-quiz-share {
  margin: 18px 0 0 0;
}
.jwco-result-centered .jwco-coaching-quiz-email-block {
  margin: 30px auto 0 auto;
  max-width: 400px;
}

.jwco-result-bottom-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 32px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  background: none !important;
}
.jwco-result-share-box,
.jwco-result-save-box {
  flex: 1 1 0 !important;
  min-width: 740px !important;
  max-width: 340px !important;
  background: #fff !important;
  margin-bottom: 20px !important;
}
.jwco-result-share-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.jwco-result-share-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jwco-share-btn {
  display: block;
  padding: 10px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s;
}
.jwco-share-btn.fb { background: #1877f2; color: #fff; }
.jwco-share-btn.fb:hover { background: #145db2; }
.jwco-share-btn.tw { background: #222; color: #fff; }
.jwco-share-btn.tw:hover { background: #444; }
.jwco-share-btn.li { background: #0077b5; color: #fff; }
.jwco-share-btn.li:hover { background: #005983; }

.jwco-result-save-box {
  background: #fffbe6;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  padding: 24px 32px 24px 32px;
  min-width: 260px;
  flex: 1;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.jwco-result-save-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #b38f00;
}
.jwco-result-save-desc {
  font-size: 0.98rem;
  margin-bottom: 14px;
  color: #7a6a00;
}
.jwco-result-save-email {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
.jwco-result-save-btn {
  background: #F5B400;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.jwco-result-save-btn:hover {
  background: #FFC400;
}
.jwco-result-save-msg {
  font-size: 0.98rem;
  margin-top: 4px;
}
@media (max-width: 900px) {
  html, body {
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  #jwco-coaching-quiz-wrapper {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
  }

  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-left{
    width: 395px !important;
  }


  
  .jwco-coaching-quiz-right,
  .jwco-coaching-quiz-left {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }
  .jwco-progress-mobile { display: block !important; }
  .jwco-progress-desktop { display: none !important; }
  .jwco-coaching-quiz-left {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .jwco-coaching-quiz-title,
  .jwco-coaching-quiz-progress-label,
  .jwco-coaching-quiz-subtitle {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .jwco-coaching-quiz-progress-bar {
    margin-left: -30px !important;
    margin-right: 0 !important;
    display: block !important;
    float: none !important;
  }
  .jwco-coaching-quiz-circle {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 24px !important;
  }
  #jwco-coaching-quiz-wrapper {
    flex-direction: column !important;
  }
  .jwco-coaching-quiz-left,
  .jwco-coaching-quiz-right {
    width: 100% !important;
    min-width: 0 !important;
  }
  .jwco-result-bottom-row {
    flex-direction: column !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }
  .jwco-result-share-box, .jwco-result-save-box {
    max-width: 100% !important;
    width: 100% !important;
  }
  .jwco-coaching-quiz-circle-small,
  .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}
@media (max-width: 700px) {
  #jwco-coaching-quiz-wrapper {
    flex-direction: column !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 !important;
  }
  .jwco-coaching-quiz-left {
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px 8px 8px 8px !important;
    box-shadow: none !important;
    align-items: flex-start !important;
  }
  .jwco-coaching-quiz-title {
    font-size: 1.3rem !important;
    margin-left: 0px !important;
    margin-top: 0 !important;
  }
  .jwco-coaching-quiz-circle {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 8px !important;
  }


  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-left{
    width: 395px !important;
  }



  .jwco-coaching-quiz-subtitle {
    margin-left: -15px !important;
    font-size: 0.9rem !important;
  }
  .jwco-coaching-quiz-right {
    width: 100% !important;
        min-width: 0 !important;
        padding: 10px 10vw 20px 15vw !important;
        box-sizing: border-box !important;
        margin-left: -37px !important;
  }
  .jwco-coaching-quiz-context {
    flex-direction: row !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
    font-size: 0.95rem !important;
    word-break: break-word !important;
  }
  .jwco-coaching-quiz-context-text {
    font-size: 0.95rem !important;
    word-break: break-word !important;
    max-width: 90vw !important;
    display: inline-block !important;
  }
  .jwco-coaching-quiz-question {
    font-size: 1.05rem !important;
    margin-bottom: 10px !important;
    word-break: break-word !important;
  }
  .jwco-coaching-quiz-answers {
    gap: 8px !important;
    margin-bottom: 18px !important;
  }
  .jwco-coaching-quiz-answer {
    font-size: 0.98rem !important;
    padding: 10px 8px !important;
    border-radius: 5px !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .jwco-coaching-quiz-next, #jwco-coaching-quiz-prev {
    font-size: 1rem !important;
    padding: 10px 18px !important;
    margin-top: 8px !important;
  }
  .jwco-result-main {
    padding: 12px 4px 8px 4px !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }
  .jwco-result-bottom-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
  .jwco-result-share-box, .jwco-result-save-box {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 4px 10px 4px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .jwco-coaching-quiz-circle-small,
  .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}
/* Remove quiz-only styles on result page */
#jwco-coaching-quiz-wrapper:not(.jwco-result-pixel-perfect) .jwco-result-pixel-perfect, .jwco-result-pixel-perfect .jwco-coaching-quiz-progress, .jwco-result-pixel-perfect .jwco-coaching-quiz-next, .jwco-result-pixel-perfect .jwco-coaching-quiz-question, .jwco-result-pixel-perfect .jwco-coaching-quiz-answers { display: none !important; }

.jwco-coaching-quiz-circle-small--result {
  position: absolute;
  left: 32px;
  top: 290px;
  width: 32px;
  height: 32px;
  background: #F5B400;
  border-radius: 50%;
  z-index: 2;
}

/* FORCE LEFT COLUMN AND CIRCLES TO SHOW ON RESULT PAGE */
#jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect {
  display: flex !important;
}
#jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-left {
  display: flex !important;
  width: 410px !important;
  min-width: 200px !important;
  background: #fff !important;
  position: relative !important;
  z-index: 10 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  box-shadow: 2px 0 16px rgba(0,0,0,0.04) !important;
  border-radius: 10px !important;
}
#jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle,
#jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small--result {
  display: block !important;
  background: #F5B400 !important;
}

.jwco-progress-mobile { display: none !important; }
.jwco-progress-desktop { display: block !important; }
@media (max-width: 900px) {
  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect {
    flex-direction: column !important;
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow-x: hidden !important;
    margin-left: -20px !important;
    align-items: center !important;
    padding-top: 20px !important;
  }

  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-left {
    margin-left: -5px !important;
    width: 410px !important;
  }



  .jwco-coaching-quiz-left {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 16px 8px 8px 8px !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: none !important;
  }
  .jwco-coaching-quiz-title,
  .jwco-coaching-quiz-subtitle {
    text-align: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .jwco-coaching-quiz-subtitle {
    margin-bottom: 10px !important;
  }
  .jwco-coaching-quiz-right {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 10px 12vw 20px 12vw !important;
    margin: 0 !important;
    margin-left: -40px !important;
  }
  .jwco-result-main {
    padding: 12px 14px 8px 14px !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    width: 410px !important;
        margin-left: -24px !important;
  }
  .jwco-result-prompt{
    align-items: center !important;
    align-content: center !important;
    text-align: center !important;
  }


  .jwco-result-title,
  .jwco-result-score,
  .jwco-result-band,
  .jwco-result-interpretation,
  .jwco-result-reflection {
    text-align: center !important;
    width: 100% !important;
  }
  .jwco-result-divider {
    margin: 12px 0 !important;
  }
  .jwco-result-bottom-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    align-items: stretch !important;
  }
  .jwco-result-share-box, .jwco-result-save-box {
    max-width: 100% !important;
    width: 440px !important;
    padding: 10px 15px 10px 15px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 auto 10px auto !important;
    align-items: center !important;
    margin-left: -26px !important;
  }
  .jwco-result-save-title, .jwco-result-share-title {
    text-align: center !important;
    width: 100% !important;
  }
  .jwco-coaching-quiz-circle-small,
  .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}

/* Style for the explanation box */
#jwco-coaching-quiz-explanation {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #f6f6f6;
  border: 1px solid #ffe082;
  border-radius: 8px;
  margin: 20px 0 0 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.jwco-explanation-bar {
  width: 8px;
  background: #FFD600;
  border-radius: 8px 0 0 8px;
}

.jwco-explanation-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px 24px 18px 24px;
  box-sizing: border-box;
}

.jwco-explanation-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 15px;
  margin-top: 15px;
}

.jwco-explanation-label {
  font-weight: bold;
  color: #FFD600;
  min-width: 120px;
  margin-right: 18px;
  line-height: 1.3;
  text-align: left;
  flex-shrink: 0;
}

.jwco-explanation-text {
  color: #444;
  text-align: left;
  flex: 1;
}

.jwco-explanation-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 16px 0;
  width: 100%;
}

@media (max-width: 600px) {
  #jwco-coaching-quiz-explanation {
    flex-direction: column;
  }

  .jwco-result-plus-icon {
    font-size: 12rem !important;
      font-weight: bold;
      margin-top: -120px !important;
      margin-bottom: -120px !important;
      color: #F5B400;
  }

  .jwco-explanation-bar {
    width: 100%;
    height: 6px;
    border-radius: 8px 8px 0 0;
  }
  .jwco-explanation-table {
    padding: 14px 8px;
  }
  .jwco-explanation-label {
    min-width: 90px;
    margin-right: 10px;
  }
  .jwco-coaching-quiz-circle-small,
  .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}

.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small {
  position: sticky;
  top: 24px;
  z-index: 10;
}

@media (max-width: 900px) {
  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small,
  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}
@media (max-width: 600px) {
  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small,
  #jwco-coaching-quiz-wrapper.jwco-result-pixel-perfect .jwco-coaching-quiz-circle-small--result {
    display: none !important;
  }
}














