/* ================================
   PART 15: NO ASSESSMENT BOX
   ================================ */

.no-assessment-box {
  max-width: 600px;
  margin: 60px auto;
  padding: 60px 40px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB; /* Divider Gray */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.no-assessment-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #26366B; /* Primary */
  margin: 0 0 20px;
}

.no-assessment-box p {
  font-size: 16px;
  color: #64748B; /* Secondary Accent */
  margin: 0 0 30px;
}

/* ================================
   3 MISSING CSS CLASSES
   ================================ */

/* Missing Class #1: Domain Score Display */
.domain-score-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 15px;
}

.domain-score-display .score-number {
  font-size: 32px;
  font-weight: 800;
  color: #26366B;
}

.domain-score-display .score-max {
  font-size: 16px;
  font-weight: 600;
  color: #64748B;
  padding-bottom: 4px;
}

/* Missing Class #2: Priority Locked Preview (Free Report) */
.priority-locked-preview {
  background: #F1F5F9;
  border: 1px dashed #64748B;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.priority-locked-preview p {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #64748B;
  font-size: 14px;
}

.priority-locked-preview ul {
  font-size: 14px;
  margin-bottom: 0;
  padding-left: 20px;
}

/* Missing Class #3: Insight Bullets */
.insight-bullets {
  margin: 20px 0;
  padding-left: 20px;
}

.insight-bullets li {
  font-size: 15px;
  color: #222329D9;
  line-height: 1.7;
  margin-bottom: 10px;
}

.insight-bullets li::marker {
  color: #4F7DF3;
}

