/**
 * AI Reputation Monitoring Tool - CSS Styles
 * Matching GBP Audit Design
 */

/* ========================================
   CONTAINER & GLOBAL
   ======================================== */
#ai-reputation-container {
  width: 50%;
  margin: 10px auto;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.6;
}

#ai-reputation-container * {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

p {
  margin: 0 0 1rem 0;
}

/* ========================================
   SCREEN MANAGEMENT
   ======================================== */
.ai-screen {
  display: none;
}

.ai-screen.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ai-screen-content {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HEADER STYLES (Matching GBP Audit)
   ======================================== */
.header-bg {
  min-height: 175px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('https://breakoutinternetmarketing.com/wp-content/uploads/2026/01/ai-reputation-header.png');
  margin-bottom: 20px;
}

.header-bg.small {
  min-height: 120px;
}

/* ========================================
   FORM HEADER
   ======================================== */
.form-header {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form-header h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #0e2e62;
}

.form-header p {
  color: #666;
  margin: 0;
}

.input-instructions {
  text-align: left;
  margin-bottom: 10px;
}

/* ========================================
   SEARCH FORM
   ======================================== */
.search-form {
  margin-bottom: 20px;
}

#business-search {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  border: 2px solid #9eacc0;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

#business-search:focus {
  outline: none;
  border-color: #0e2e62;
}

/* Search Results */
.search-results {
  display: none;
  margin: 0 auto;
  border: 2px solid #9eacc0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 275px;
  max-width: 500px;
  overflow-y: auto;
  margin-top: -17px;
  margin-bottom: 15px;
  background: white;
}

.search-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-result-item:hover {
  background-color: #f5f5f5;
}

.search-result-item:last-child {
  border-bottom: none;
}

.result-main {
  font-weight: 600;
  color: #0e2e62;
  margin-bottom: 5px;
}

.result-secondary {
  font-size: 14px;
  color: #666;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary,
.btn-secondary {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 30px auto 0;
  padding: 15px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: #51ac51;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background-color: #377437;
}

.btn-primary:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: #d94f43;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #b83d32;
}

#check-business {
  float: left;
  margin-top: 75px;
  margin-left: 20px;
}

/* ========================================
   BUSINESS SUMMARY (Screen 2)
   ======================================== */
.business-summary {
  margin-bottom: 30px;
}

.business-summary h3 {
  color: #0e2e62;
  margin-top: 0;
}

.summary-info {
  background-color: #fcfcfc;
  padding: 15px;
  border: 1px solid #00538f;
  border-radius: 5px;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item label {
  display: block;
  font-weight: 600;
  color: #0e2e62;
  margin-bottom: 5px;
}

.info-item p {
  margin: 0;
  color: #666;
}

/* ========================================
   LEAD FORM
   ======================================== */
.lead-capture {
  background: white;
  padding: 20px;
  margin-top: 20px;
}

.lead-capture h3 {
  color: #0e2e62;
  margin-top: 0;
}

.form-intro {
  color: #666;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0e2e62;
}

.form-group .required {
  color: #dc3545;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #9eacc0;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0e2e62;
}

.privacy-note {
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  margin-top: 15px;
}

/* ========================================
   REPORT HEADER (Screen 3)
   ======================================== */
.report-header {
  text-align: center;
  margin-bottom: 30px;
}

.report-header h2 {
  margin: 0 0 10px 0;
  color: #0e2e62;
  font-weight: bold;
  font-size: 28px;
}

.report-header p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

/* Two Column Layout */
.report-header-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

/* Business Info Card */
.report-gbp {
  background: linear-gradient(135deg, #00538f 0%, #00538f 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.report-gbp h3 {
  color: white;
  margin-bottom: 10px;
}

#report-business-address {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 10px;
}

/* Score Card */
.score-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.score-letter {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.score-divider {
  width: 2px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
}

.score-numeric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-value {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.score-label {
  font-size: 16px;
  opacity: 0.9;
}

/* ========================================
   REPORT SECTIONS
   ======================================== */
.report-sections {
  margin-bottom: 30px;
}

.report-section {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 4px solid #00538f;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h3 {
  margin: 0;
  color: #0e2e62;
  font-size: 20px;
}

.section-score {
  background-color: #667eea;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* Platform Cards */
.platform-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.platform-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.platform-header {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.platform-logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.platform-card.chatgpt .platform-logo {
  color: #10a37f;
  border: 2px solid #10a37f;
}

.platform-card.gemini .platform-logo {
  color: #4285f4;
  border: 2px solid #4285f4;
}

.platform-info {
  flex: 1;
}

.platform-info h4 {
  margin: 0 0 4px 0;
  color: #212529;
  font-size: 18px;
}

.platform-subtitle {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}

.platform-score {
  text-align: center;
}

.accuracy-score {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #212529;
}

.accuracy-label {
  font-size: 13px;
  color: #6c757d;
}

.platform-details {
  padding: 20px;
}

.platform-criteria {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 15px;
}

.criteria-item.correct {
  background: #d4edda;
  border-left: 4px solid #28a745;
}

.criteria-item.correct i {
  color: #28a745;
  font-size: 18px;
}

.criteria-item.incorrect {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.criteria-item.incorrect i {
  color: #dc3545;
  font-size: 18px;
}

/* ========================================
   ISSUES SECTION
   ======================================== */
.issues-section {
  margin-bottom: 30px;
}

.issues-section h3 {
  color: #dc3545;
  margin-bottom: 20px;
  font-size: 20px;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.issue-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.issue-item.critical {
  border-left: 5px solid #dc3545;
  background: #fff5f5;
}

.issue-item.high {
  border-left: 5px solid #fd7e14;
  background: #fff8f3;
}

.issue-item.medium {
  border-left: 5px solid #ffc107;
  background: #fffdf3;
}

.issue-item.low {
  border-left: 5px solid #17a2b8;
  background: #f3fbfc;
}

.issue-header {
  background: #f8f9fa;
  padding: 15px 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.issue-severity {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.issue-item.critical .issue-severity {
  background: #dc3545;
}

.issue-item.high .issue-severity {
  background: #fd7e14;
}

.issue-item.medium .issue-severity {
  background: #ffc107;
  color: #333;
}

.issue-item.low .issue-severity {
  background: #17a2b8;
}

.issue-category {
  font-weight: 600;
  color: #495057;
  font-size: 15px;
}

.issue-platform {
  margin-left: auto;
  padding: 4px 12px;
  background: white;
  border-radius: 20px;
  font-size: 13px;
  color: #6c757d;
}

.issue-details {
  padding: 20px;
}

.issue-details p {
  margin-bottom: 10px;
  color: #495057;
  line-height: 1.6;
}

/* ========================================
   RECOMMENDATIONS
   ======================================== */
.recommendations-section {
  margin-bottom: 30px;
}

.recommendations-section h3 {
  color: #28a745;
  margin-bottom: 20px;
  font-size: 20px;
}

.recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recommendation-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.recommendation-item.critical,
.recommendation-item.high {
  border-left: 5px solid #28a745;
}

.recommendation-item.medium {
  border-left: 5px solid #17a2b8;
}

.recommendation-item.low {
  border-left: 5px solid #6c757d;
}

.rec-header {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 20px;
}

.rec-priority {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
}

.recommendation-item.critical .rec-priority,
.recommendation-item.high .rec-priority {
  background: #28a745;
}

.recommendation-item.medium .rec-priority {
  background: #17a2b8;
}

.recommendation-item.low .rec-priority {
  background: #6c757d;
}

.rec-header h4 {
  margin: 0;
  color: #212529;
  font-size: 18px;
}

.rec-description {
  padding: 20px;
  padding-bottom: 10px;
  color: #495057;
  line-height: 1.7;
}

.rec-actions {
  padding: 0 20px 20px;
}

.rec-actions h5 {
  color: #495057;
  margin-bottom: 10px;
  font-size: 16px;
}

.rec-actions ul {
  margin: 0;
  padding-left: 20px;
}

.rec-actions li {
  margin-bottom: 8px;
  color: #6c757d;
}

/* ========================================
   REPORT ACTIONS
   ======================================== */
.report-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.contact-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
}

.cta-content h3 {
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  opacity: 0.95;
  margin-bottom: 25px;
  font-size: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-bg {
  min-height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  background-image: url('https://breakoutinternetmarketing.com/wp-content/uploads/2025/12/business-profile-checkup-desktop-footer.png');
  margin-top: 30px;
}

.report-footer {
  margin: 20px;
  line-height: 1.5rem;
  text-align: center;
}

.report-footer h6 {
  color: #00528f;
  font-weight: 500;
}

.form-footer {
  text-align: center;
  padding-top: 20px;
}

.contact-link {
  color: #00538f;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
  white-space: nowrap;
}

.contact-link:hover {
  text-decoration: none;
}

/* ========================================
   LOADING SPINNER
   ======================================== */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.spinner-container h3 {
  color: #212529;
  margin-bottom: 10px;
}

.spinner-container p {
  color: #6c757d;
  margin-bottom: 30px;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.progress-steps .step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #6c757d;
  opacity: 0.5;
}

.progress-steps .step i {
  font-size: 18px;
}

.progress-steps .step.active {
  background: #e7f1ff;
  color: #667eea;
  opacity: 1;
}

.progress-steps .step.completed {
  background: #d4edda;
  color: #28a745;
  opacity: 1;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  color: #0e2e62;
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  color: #999;
}

.modal-close:hover {
  color: #333;
}

/* ========================================
   ERROR/SUCCESS MESSAGES
   ======================================== */
.error {
  color: #d32f2f;
  padding: 10px;
  text-align: center;
  background: #ffebee;
  border-radius: 5px;
  margin: 10px 0;
}

.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ========================================
   DEMO MODE BADGE
   ======================================== */
.demo-mode-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 932px) {
  #ai-reputation-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .ai-screen-content {
    padding: 10px;
  }

  .header-bg {
    min-height: 120px;
    background-image: url('https://breakoutinternetmarketing.com/wp-content/uploads/2025/12/ai-reputation-mobile-header.png');
  }

  .footer-bg {
    min-height: 150px;
    background-image: url('https://breakoutinternetmarketing.com/wp-content/uploads/2025/12/business-profile-checkup-mobile-footer.png');
  }

  #check-business {
    float: none;
    display: block;
    margin: 20px auto 0;
  }

  .report-header-columns {
    grid-template-columns: 1fr;
  }

  .score-card {
    flex-direction: row;
    gap: 15px;
    padding: 20px;
  }

  .score-letter {
    font-size: 56px;
  }

  .score-divider {
    height: 60px;
  }

  .score-value {
    font-size: 36px;
  }

  .report-gbp #report-business-address {
    font-size: 1rem;
  }

  .platform-header {
    flex-wrap: wrap;
  }

  .platform-score {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }

  .issue-header {
    flex-wrap: wrap;
  }

  .issue-platform {
    margin-left: 0;
    margin-top: 10px;
  }

  .report-actions {
    flex-direction: column;
  }

  .search-results {
    max-height: 350px;
  }

  .demo-mode-badge {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 8px 15px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}
/* ========================================
   NEW ADDITIONS - Add these to your CSS
   ======================================== */

/* Search Container - Make search box and button inline */
.search-container {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 30px;
}

.search-input-wrapper {
  flex: 1;
  max-width: 600px;
}

#check-business {
  flex-shrink: 0;
  margin: 0 !important; /* Override the margin-top: 75px */
  width: auto !important;
  max-width: none !important;
}

/* Business Summary Card Styles */
.business-summary-card {
  background: #ffffff;
  border: 2px solid #00538f;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-summary-card h3 {
  color: #0e2e62;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
}

.business-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.business-info-grid .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  border-left: 4px solid #00538f;
}

.business-info-grid .info-item i {
  color: #00538f;
  font-size: 20px;
  margin-top: 2px;
}

.business-info-grid .info-item label {
  display: block;
  font-weight: 600;
  color: #0e2e62;
  margin-bottom: 5px;
  font-size: 14px;
}

.business-info-grid .info-item .value {
  color: #666;
  font-size: 15px;
  margin: 0;
  word-break: break-word;
}

/* Report Header Styles */
.report-title-section {
  text-align: center;
  margin-bottom: 30px;
}

.report-title-section h1 {
  color: #0e2e62;
  font-size: 32px;
  margin-bottom: 10px;
}

.report-title-section h2 {
  color: #00538f;
  font-size: 24px;
  margin-bottom: 10px;
}

.report-title-section p {
  color: #666;
  font-size: 16px;
}

/* Score Card Container */
.score-card-container {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Updated Score Card with Grade Badge */
.score-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* Background color set by JS based on grade */
}

.score-content {
  flex: 1;
}

.score-main {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.score-number {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: white;
}

.score-max {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.score-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.grade-badge {
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grade-badge span {
  font-size: 72px;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.score-explanation {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00538f;
}

.score-explanation p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* ========================================
   RESPONSIVE UPDATES - Add to existing mobile section
   ======================================== */

@media (max-width: 932px) {
  /* Make search container stack on mobile */
  .search-container {
    flex-direction: column;
    align-items: stretch;
  }

  #check-business {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Stack business info grid on mobile */
  .business-info-grid {
    grid-template-columns: 1fr;
  }

  /* Adjust score card for mobile */
  .score-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .score-content {
    margin-bottom: 20px;
  }

  .grade-badge {
    width: 100px;
    height: 100px;
  }

  .grade-badge span {
    font-size: 56px;
  }

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

  .score-max {
    font-size: 24px;
  }
}
