.bb-score-report-page {
  min-height: 100vh;
  background: #f4f5f7;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.bb-score-report-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 32px 48px;
  box-sizing: border-box;
}

.bb-score-report-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.bb-score-report-back {
  border: 1.5px solid #3553d8;
  border-radius: 999px;
  background: #fff;
  color: #3553d8;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.bb-score-report-header {
  margin-bottom: 28px;
}

.bb-score-report-title {
  margin: 0 0 10px 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}

.bb-score-report-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #555;
}

.bb-score-report-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.bb-score-report-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bb-score-report-summary-label {
  font-size: 15px;
  line-height: 1.2;
  color: #666;
  margin-bottom: 10px;
}

.bb-score-report-summary-value {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.bb-score-report-modules,
.bb-score-report-table-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.bb-score-report-modules h2,
.bb-score-report-table-wrap h2 {
  margin: 0 0 18px 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.bb-score-report-empty {
  font-size: 16px;
  color: #666;
}

.bb-score-report-table-scroll {
  overflow-x: auto;
}

.bb-score-report-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.bb-score-report-table th {
  background: #545454;
  color: #fff;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 12px;
}

.bb-score-report-table td {
  border-bottom: 1px solid #d7d7d7;
  padding: 18px 12px;
  font-size: 16px;
  line-height: 1.35;
  vertical-align: top;
}

.bb-score-report-empty-cell {
  text-align: center;
  color: #666;
}

.bb-score-report-modules-list {
  display: grid;
  gap: 14px;
}

.bb-score-report-module-card {
  border: 1px solid #d8dbe3;
  border-radius: 14px;
  padding: 16px 18px;
  background: #fafbff;
}

.bb-score-report-module-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bb-score-report-module-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  line-height: 1.35;
  color: #333;
}

/* =========================================================
   SCORE REPORT – enable page scrolling
   ========================================================= */

html.bb-score-report-html,
html.bb-score-report-html body {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body.bb-score-report-body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.bb-score-report-page {
  min-height: 100vh;
  overflow: visible !important;
}

.bb-score-report-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.bb-score-report-status.is-correct {
  background: #e7f6ea;
  color: #157347;
}

.bb-score-report-status.is-incorrect {
  background: #fde8e8;
  color: #b42318;
}

.bb-score-report-status.is-omitted {
  background: #eceff3;
  color: #5c6773;
}

.bb-score-report-status.is-neutral {
  background: #eef2ff;
  color: #3553d8;
}