/**
 * Courseable Anger Management Assessment V2
 * Styles for full-screen assessment experience
 * Fixed version with proper vendor prefixes and consistent breakpoints
 */

/* Full page gradient background */
body.caa-v2-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: 
    radial-gradient(1200px 800px at 0% 0%, #d9f4f4 0%, rgba(217, 244, 244, 0) 60%),
    radial-gradient(1200px 800px at 100% 100%, #e7eafb 0%, rgba(231, 234, 251, 0) 65%),
    linear-gradient(180deg, #e9f7fb 0%, #eef4ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

/* Hide theme header/footer */
.elementor.elementor-228.elementor-location-footer,
header.elementor.elementor-166.elementor-location-header {
  display: none !important;
}

/* Main container */
.caa-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Close button (X) in top right like mockup */
.caa-close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #333;
  background: white;
  color: #333;
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.caa-close-btn:hover {
  background: #333;
  color: white;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Progress bar */
.caa-progress-bar {
  width: 100%;
  max-width: 800px;
  height: 12px;
  background: rgba(198, 233, 234, 0.5);
  border-radius: 9999px;
  margin: 24px auto 15px;
  overflow: hidden;
  position: relative;
}

.caa-progress {
  height: 100%;
  width: 0%;
  background: #1C9DA0;
  border-radius: 9999px;
  -webkit-transition: width 0.4s ease;
  -moz-transition: width 0.4s ease;
  -o-transition: width 0.4s ease;
  transition: width 0.4s ease;
  position: relative;
}

/* Logo */
.caa-logo {
  max-width: 250px;
  height: auto;
  margin: 25px auto 5px;
  display: block;
}

/* Logo fallback when image unavailable */
.caa-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1C9DA0;
  text-align: center;
  margin: 25px auto 5px;
  display: none !important;
}

/* Screen container */
.caa-screen-container {
  width: 100%;
  max-width: 700px;
  margin: 10px auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card styles - no white background like mockup */
.caa-card {
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  -webkit-animation: fadeIn 0.4s ease;
  -moz-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
}

.caa-welcome h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.caa-welcome .caa-subtitle,
.caa-subtitle {
  font-size: 20px;
  color: #333;
  margin: 0 0 30px;
  line-height: 1.5;
}

.caa-welcome .caa-disclaimer,
.caa-disclaimer {
  font-size: 14px;
  color: #555;
  margin: 0 0 30px;
  line-height: 1.4;
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; -webkit-transform: translateY(10px); }
  to { opacity: 1; -webkit-transform: translateY(0); }
}

@-moz-keyframes fadeIn {
  from { opacity: 0; -moz-transform: translateY(10px); }
  to { opacity: 1; -moz-transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography */
.caa-card h1,
.caa-welcome h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.caa-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 25px;
  line-height: 1.3;
}

.caa-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.caa-subtitle {
  font-size: 18px;
  color: #555;
  margin: 0 0 20px;
  line-height: 1.5;
}

.caa-disclaimer {
  font-size: 14px;
  color: #777;
  margin: 0 0 30px;
  font-style: italic;
  line-height: 1.4;
}

/* Buttons - matching mockup style */
.caa-btn,
#caa-start-btn {
  background: #1C9DA0;
  color: white !important;
  border: none !important;
  border-radius: 27px;
  padding: 10px 35px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  position: relative;
}

.caa-btn:after {
  content: '\2192';
  margin-left: 8px;
  font-size: 18px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.caa-btn:hover,
#caa-start-btn:hover {
  background: #188d90;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 157, 160, 0.3);
}

/* Only specific buttons get arrows */
button#caa-next:after {
  content: '\2192';
  margin-left: 8px;
  font-size: 18px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

button#caa-next:hover:after {
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(4px);
}

/* Remove double arrow from start button */
#caa-start-btn:after {
  display: none;
}

.caa-btn:disabled,
button#caa-next:disabled {
  background: #ccc !important;
  color: #999 !important;
  cursor: not-allowed;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.caa-btn-secondary {
  background: transparent;
  color: #333 !important;
  border: 2px solid #e5e7eb !important;
  padding: 10px 35px;
}

.caa-btn-secondary:after {
  display: none;
}

.caa-btn-secondary:hover {
  background: #f5f5f5;
  box-shadow: none;
}

button#submit-lead-btn {
    border-radius: 27px !important;
}

button#see-recommendation {
    background-color: #1C9DA0 !important;
    border-radius: 27px !important;
}

/* Back button specific styling */
.caa-btn-back,
button#caa-back {
  background: transparent !important;
  color: #666 !important;
  -webkit-transform: translate(10px, 10px);
  -moz-transform: translate(10px, 10px);
  -ms-transform: translate(10px, 10px);
  -o-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
}

.caa-btn-back:after,
button#caa-back:after {
  display: none;
}

.caa-btn-back:before,
button#caa-back:before {
  content: '\2190';
  margin-right: 8px;
  font-size: 18px;
}

caa-btn-back:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: translate(10px, 10px)!important;
}

/* Button groups */
.caa-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.caa-button-group .caa-btn {
  margin-top: 0;
}

/* Scale info */
.caa-scale-info {
  background: rgba(240, 249, 255, 0.7);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.caa-scale-info p {
  margin: 0 0 10px;
  font-weight: 600;
  color: #1a1a1a;
}

.caa-scale-labels {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

/* Question text */
.caa-question-text {
  font-size: 18px;
  color: #333;
  margin: 0 0 25px;
  line-height: 1.5;
}

/* Options */
.caa-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

button.caa-option {
  background: white !important;
  color: #1C9DA0;
  border: none !important;
  box-shadow: #00000038 0px 0px 4px;
  border-radius: 27px;
  padding: 16px 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

button.caa-option:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: #00000038 0px 2px 8px;
  color: #1C9DA0 !important;
  background: #faffff !important;
  border-radius:11px !important;
}

/* Inverted colors when selected */
button.caa-option.selected {
  background: #1C9DA0 !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(28, 157, 160, 0.4);
}

.caa-option-value {
  font-size: 24px;
  font-weight: 600;
}

.caa-option-label {
  font-size: 12px;
  opacity: 0.8;
}

/* When option is selected, ensure text remains visible */
button.caa-option.selected .caa-option-label {
  opacity: 0.9;
}

/* Specific next button styling */
button#caa-next {
  margin-top: 25px;
  background: #1C9DA0;
  border: none !important;
  color: white !important;
  padding: 10px 35px;
  border-radius: 27px;
}

/* Navigation */
.caa-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Lead capture form */
.caa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

#caa-lead-form input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 27px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

#caa-lead-form input:focus {
  outline: none;
  border-color: #1C9DA0;
}

#caa-lead-form button {
  margin-top: 20px;
  width: 100%;
  background: #1C9DA0 !important;
  border: none !important;
  color: white !important;
  padding: 10px 35px;
}

/* Error message */
.caa-error {
  color: #dc2626;
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  background: #fef2f2;
  border-radius: 8px;
}

/* Success message */
.caa-success {
  color: #16a34a;
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  background: #f0fdf4;
  border-radius: 8px;
}


button#caa-back:hover {
    background: transparent;
    box-shadow: none !important;
    transform: translate(10px, 10px);
}

/* Results screen */
.caa-results {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  -webkit-animation: fadeIn 0.4s ease;
  -moz-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
}

.caa-results-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.caa-results-card h2 {
  margin-bottom: 35px;
}

/* Score display with visual indicators */
.caa-score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.caa-score-icon {
  font-size: 48px;
  -webkit-animation: pulse 2s infinite;
  -moz-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(1.1); }
  100% { -webkit-transform: scale(1); }
}

@-moz-keyframes pulse {
  0% { -moz-transform: scale(1); }
  50% { -moz-transform: scale(1.1); }
  100% { -moz-transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.caa-score-number {
  font-size: 48px;
  font-weight: 700;
}

.caa-score-band {
  font-size: 24px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Score bands with colors and indicators - Fixed thresholds */
.score-low .caa-score-display {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
}

.score-low .caa-score-number {
  color: #28a745;
}

.score-low .caa-score-band {
  background: #28a745;
  color: white;
}

.score-low .caa-score-icon:before {
  content: '😌';
}

.score-elevated .caa-score-display {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
}

.score-elevated .caa-score-number {
  color: #856404;
}

.score-elevated .caa-score-band {
  background: #ffc107;
  color: #333;
}

.score-elevated .caa-score-icon:before {
  content: '😐';
}

.score-high .caa-score-display {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: 2px solid #dc3545;
}

.score-high .caa-score-number {
  color: #dc3545;
}

.score-high .caa-score-band {
  background: #dc3545;
  color: white;
}

.score-high .caa-score-icon:before {
  content: '😡';
}

.caa-band-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: left;
  margin: 30px 0;
  padding: 20px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
}

.caa-footer-note {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin: 25px 0;
  text-align: center;
}

/* Credibility footer - positioned at bottom */
.caa-credibility {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: #666;
  text-align: center;
  position: relative;
  bottom: 0;
}

.caa-credibility p {
  margin: 0 0 8px;
  line-height: 1.4;
}

.caa-disclaimer-link {
  color: #1C9DA0;
  text-decoration: none;
  font-size: 12px;
}

.caa-disclaimer-link:hover {
  text-decoration: underline;
}

/* Welcome screen specific credibility positioning */
.caa-welcome .caa-credibility {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-top: auto;
}

/* Results screen specific credibility */
.caa-results-card .caa-credibility {
  margin-top: 40px;
}

.caa-recommend-header {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 30px;
}

.caa-rec-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.caa-rec-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.caa-rec-weekly {
  border: 3px solid #1C9DA0;
}

.caa-preferred-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #1C9DA0;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.caa-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
}

.caa-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 15px;
  color: #555;
}

.caa-check {
  color: #1C9DA0;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.caa-rec-card .caa-btn {
  width: 100%;
  margin-top: 15px;
border-radius:27px !important;
}

.caa-guarantee {
  text-align: center;
  font-size: 14px;
  color: #555;
  font-style: italic;
  padding: 20px;
  background: #f0f9ff;
  border-radius: 12px;
  margin: 0;
}

/* Purpose selector buttons */
button.caa-purpose-btn {
  background: white !important;
  border: none !important;
  color: #1C9DA0 !important;
  margin-bottom: 10px;
  box-shadow: #00000038 0px 0px 4px;
  border-radius: 27px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: block;
}

button.caa-purpose-btn:hover {
  background: #f0fffe !important;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 157, 160, 0.2);
}

/* Loading spinner */
.caa-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  -webkit-animation: spin 1s ease-in-out infinite;
  -moz-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
}

@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
  to { -moz-transform: rotate(360deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Course links styling */
.caa-course-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.caa-course-link {
  background: #1C9DA0;
  color: white !important;
  padding: 12px 24px;
  border-radius: 27px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.caa-course-link:hover {
  background: #188d90;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 157, 160, 0.3);
}

.caa-separator {
  color: #666;
  font-weight: bold;
}

.caa-help-text {
  font-size: 14px;
  color: #666;
  margin: 20px 0;
}

.caa-help-text a {
  color: #1C9DA0;
  text-decoration: none;
}

.caa-help-text a:hover {
  text-decoration: underline;
}

/* Consistent mobile breakpoints - tablet first */
@media (max-width: 768px) {
  .caa-container {
    padding: 15px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .caa-card {
    padding: 1.5rem 1rem;
  }

  .caa-card h1 {
    font-size: 28px;
  }

  .caa-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .caa-scale-labels {
    font-size: 12px;
  }

  .caa-options {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 20px 0;
  }

  button.caa-option {
    width: 100%;
    max-width: none;
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 16px;
    gap: 15px;
    text-align: left;
  }

  .caa-option-value {
    font-size: 20px;
    min-width: 30px;
    background: rgba(28, 157, 160, 0.1);
    border-radius: 8px;
    padding: 5px 10px;
  }

  .caa-option-label {
    font-size: 16px;
    opacity: 1;
    flex: 1;
  }

  button.caa-option.selected .caa-option-value {
    background: rgba(255, 255, 255, 0.2);
  }

  .caa-row {
    grid-template-columns: 1fr;
  }

  .caa-nav {
    flex-direction: row;
    gap: 10px;
    margin-top: 25px;
  }

  .caa-nav .caa-btn {
    flex: 1;
    min-width: auto;
    padding: 10px 20px;
  }

  button#caa-next,
  button#caa-back {
    padding: 10px 20px;
  }

  .caa-logo {
    max-width: 200px;
  }

  .caa-progress-bar {
    margin: 15px auto 10px;
  }

  .caa-close-btn {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .caa-course-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .caa-logo {
    max-width: 160px;
  }

  .caa-card h1 {
    font-size: 24px;
  }

  .caa-card h2 {
    font-size: 20px;
  }

  .caa-subtitle {
    font-size: 16px;
  }

  .caa-btn,
  button#caa-next,
  button#caa-back {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 140px;
  }
  
  button.caa-option {
    padding: 12px 14px;
  }

  .caa-option-value {
    font-size: 18px;
  }

  .caa-option-label {
    font-size: 15px;
  }

  .caa-close-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

button#caa-gate-yes {
    background-color: #00ffff00 !important;
}
button#caa-gate-no {
    background-color: #1C9DA0 !important;
}

/* Very specific small phone responsive rules */
@media only screen and (max-width: 393px) and (max-height: 852px) {
  .caa-screen-container {
    align-items: flex-start;
    max-height: 800px;
    overflow-y: auto;
  }

  button#see-recommendation {
    font-size: 13px !important;
  }

  .caa-secondary-option {
    margin-top: 15px !important;
    font-size: 13px !important;
  }

  .caa-score-number {
    font-size: 36px !important;
  }

  span.caa-score-band {
    font-size: 18px !important;
  }

  .caa-band-description {
    font-size: 15px;
    text-align: center;
    margin: 25px 0;
    padding: 15px;
  }

  h2.caa-recommend-header {
    margin-bottom: 35px !important;
  }

  .caa-scale-info {
    display: none !important;
  }
}

.entry-title {
  display: none !important;
}

.class-tittle {
  font-size: 24px !important;
  font-weight: 600 !important;
}

.caa-secondary-option {
  margin-top: 15px !important;
}

.intercom-lightweight-app-launcher.intercom-launcher {
  display: none !important;
}

