
/* Audit Matrix Dashboard Styles */ .compliance-calculation {
      text-align: center;
      margin-bottom: 1.5rem;
      padding: 0.8rem;
      background-color: #f8f9fa;
      border-radius: 6px;
      border: 1px solid #dee2e6;
    }
    .calculation-text {
      font-size: 0.85rem;
      color: #666666;
      font-style: italic;
      margin: 0;
      font-weight: 400;
    }
    .audit-matrix-dashboard {
      margin-bottom: 2rem;
      background: #1a1a1a;
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      border: 1px solid #333333;
    }
    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .matrix-card.empty {
      background: transparent;
      border: none;
      box-shadow: none;
      visibility: hidden;
    }
    .matrix-card {
      background: #2a2a2a;
      border: 2px solid #404040;
      border-radius: 8px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: all 0.3s ease;
      min-height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .matrix-card:hover {
      background: #333333;
      border-color: #555555;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .matrix-label {
      font-size: 0.65rem;
      font-weight: 700;
      color: #b0b0b0;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }
    .matrix-value {
      font-size: 2.5rem;
      font-weight: 800;
      font-family: Arial, sans-serif;
      line-height: 1;
      margin: 0;
    }
    /* Matrix Card Colors */ .matrix-card.total .matrix-value {
      color: #4a9eff;
    }
    .matrix-card.passed .matrix-value {
      color: #4a9eff;
    }
    .matrix-card.inapplicable .matrix-value {
      color: #4a9eff;
    }
    .matrix-card.failed .matrix-value {
      color: #ff4757;
    }
    .matrix-card.incomplete .matrix-value {
      color: #4a9eff;
    }
    .matrix-card.compliance .matrix-value {
      color: #4a9eff;
      font-size: 2.8rem;
    }
    .matrix-card.critical .matrix-value {
      color: #ff4757;
    }
    .matrix-card.serious .matrix-value {
      color: #ffa502;
    }
    .matrix-card.moderate .matrix-value {
      color: #ffd32a;
    }
    .matrix-card.minor .matrix-value {
      color: #2ed573;
    }
    /* Scan Snapshot */ .scan-snapshot {
      margin-bottom: 2rem;
    }
    .snapshot-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .scan-snapshot h2 {
      color: #ffffff;
      font-size: 1.4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0;
    }
    .compliance-rate-display {
      text-align: right;
    }
    .compliance-rate-label {
      font-size: 0.6rem;
      font-weight: 700;
      color: #b0b0b0;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.3rem;
    }
    .compliance-rate-value {
      font-size: 2.2rem;
      font-weight: 800;
      color: #4a9eff;
      font-family: Arial, sans-serif;
      line-height: 1;
    }
    .progress-bar-container {
      background: #2a2a2a;
      border: 2px solid #404040;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .progress-bar {
      height: 24px;
      background-color: #1a1a1a;
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      margin-bottom: 1rem;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
      border: 1px solid #333333;
    }
    .progress-segment {
      height: 100%;
      transition: width 0.3s ease;
    }
    .progress-segment.passed {
      background-color: #2ed573;
    }
    .progress-segment.inapplicable {
      background-color: #747d8c;
    }
    .progress-segment.failed {
      background-color: #ff4757;
    }
    .progress-segment.incomplete {
      background-color: #3742fa;
    }
    .progress-labels {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .progress-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .label-color {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .label-color.passed {
      background-color: #2ed573;
    }
    .label-color.inapplicable {
      background-color: #747d8c;
    }
    .label-color.failed {
      background-color: #ff4757;
    }
    .label-color.incomplete {
      background-color: #3742fa;
    }
    .label-text {
      font-size: 0.85rem;
      color: #cccccc;
      font-weight: 500;
    }
    /* Severity Legend */ .severity-legend {
      background: #2a2a2a;
      border: 2px solid #404040;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .severity-legend h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #ffffff;
      font-size: 1.4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .legend-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: #1a1a1a;
      border-radius: 6px;
      border: 1px solid #333333;
      transition: all 0.3s ease;
    }
    .legend-item:hover {
      background: #222222;
      border-color: #444444;
    }
    .legend-color {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .legend-color.critical {
      background-color: #ff4757;
    }
    .legend-color.serious {
      background-color: #ffa502;
    }
    .legend-color.moderate {
      background-color: #ffd32a;
    }
    .legend-color.minor {
      background-color: #2ed573;
    }
    .legend-content {
      font-size: 0.85rem;
      color: #cccccc;
      line-height: 1.4;
    }
    /* Separated Sections */ .compliance-section, .issues-section, .legal-section {
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid #dee2e6;
    }
    /* Page Description Section */ .page-description {
      background: #ffffff;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      border: 1px solid #e9ecef;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-top: 1.5rem;
    }
    .page-description h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }
    .description-text {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      line-height: 1.4;
      margin-bottom: 1rem;
      text-align: left;
    }
    .description-points {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .description-point {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem;
      background: #f8f9fa;
      border-radius: 6px;
      border-left: 4px solid #4a9eff;
    }
    .point-icon {
      font-size: 1rem;
      flex-shrink: 0;
    }
    .point-text {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.75rem;
      line-height: 1.3;
    }
    .compliance-section h2, .issues-section h2, .legal-section h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      text-align: center;
    }
    .section-description {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    /* Main Content Areas */ .compliance-container, .issues-container, .legal-container {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
      margin-top: 3rem;
    }
    .compliance-main, .issues-main, .legal-main {
      flex: 1;
      background: #ffffff;
      border-radius: 8px;
      padding: 1.5rem;
      border: 2px solid #e9ecef;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .compliance-icon, .issues-icon, .legal-icon {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
    }
    .compliance-title, .issues-title, .legal-title {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: #666666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
    }
    .compliance-value, .issues-value, .legal-value {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }
    .compliance-value {
      color: #28a745;
    }
    .issues-value {
      color: #ffc107;
    }
    .legal-value {
      color: #dc3545;
    }
    .compliance-description, .issues-description, .legal-description {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      color: #666666;
      line-height: 1.4;
    }
    /* Detail Boxes */ .compliance-details, .legal-details {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    .issues-details {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    .detail-box {
      background: #ffffff;
      border-radius: 6px;
      padding: 1.2rem;
      border: 2px solid #e9ecef;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    .detail-box:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .detail-label {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: #666666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
    }
    .detail-value {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 0.4rem;
    }
    .detail-explanation {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.7rem;
      color: #888888;
      line-height: 1.2;
    }
    /* Severity-specific styling */ .detail-box.critical {
      border-color: #e74c3c;
    }
    .detail-box.critical .detail-value {
      color: #e74c3c;
    }
    .detail-box.serious {
      border-color: #ffa502;
    }
    .detail-box.serious .detail-value {
      color: #ffa502;
    }
    .detail-box.moderate {
      border-color: #ffd32a;
    }
    .detail-box.moderate .detail-value {
      color: #ffd32a;
    }
    .detail-box.minor {
      border-color: #2ed573;
    }
    .detail-box.minor .detail-value {
      color: #2ed573;
    }
    
    .scope-section, .methodology-section, .framework-section, .wcag-section {
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: #ffffff;
      border-radius: 8px;
      border: 1px solid #e9ecef;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .scope-section h2, .methodology-section h2, .framework-section h2, .wcag-section h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .scope-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .scope-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 6px;
      border-left: 4px solid #4a9eff;
    }
    .scope-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .scope-details h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .scope-details p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      line-height: 1.4;
      margin: 0;
    }
    .methodology-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .methodology-card {
      background: #f8f9fa;
      border-radius: 8px;
      padding: 1.5rem;
      border: 1px solid #e9ecef;
      transition: all 0.3s ease;
    }
    .methodology-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .methodology-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }
    .methodology-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      text-align: center;
    }
    .methodology-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 1rem;
      text-align: center;
    }
    .methodology-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .methodology-content li {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.8rem;
      line-height: 1.4;
      margin-bottom: 0.4rem;
      padding-left: 1rem;
      position: relative;
    }
    .methodology-content li:before {
      content: "•";
      color: #4a9eff;
      font-weight: bold;
      position: absolute;
      left: 0;
    }
    .framework-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .framework-item {
      background: #f8f9fa;
      border-radius: 6px;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid #e9ecef;
    }
    .framework-label {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }
    .framework-value {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .framework-description {
      color: #888888;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.75rem;
      line-height: 1.3;
    }
    .wcag-content {
      text-align: center;
    }
    .wcag-description {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    .wcag-principles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .principle-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: #f8f9fa;
      border-radius: 8px;
      border: 1px solid #e9ecef;
    }
    .principle-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }
    .principle-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .principle-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      line-height: 1.4;
      margin: 0;
    }
    /* Detailed Breakdown */ .detailed-breakdown {
      margin-bottom: 2rem;
      padding: 2rem;
      background: #1a1a1a;
      border-radius: 12px;
      border: 1px solid #333333;
    }
    .detailed-breakdown h2 {
      color: #ffffff;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }
    .breakdown-description {
      color: #cccccc;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      text-align: center;
    }
    .breakdown-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .breakdown-item {
      background: #2a2a2a;
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      border: 2px solid #404040;
      transition: all 0.3s ease;
    }
    .breakdown-item:hover {
      transform: translateY(-3px);
      border-color: #555555;
    }
    .breakdown-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .breakdown-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #b0b0b0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }
    .breakdown-value {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }
    .breakdown-percentage {
      font-size: 0.9rem;
      font-weight: 600;
      color: #888888;
      margin-bottom: 0.5rem;
    }
    .breakdown-explanation {
      font-size: 0.75rem;
      color: #aaaaaa;
      line-height: 1.3;
      font-style: italic;
    }
    .breakdown-item.success {
      border-color: #28a745;
    }
    .breakdown-item.neutral {
      border-color: #6c757d;
    }
    .breakdown-item.failed {
      border-color: #dc3545;
    }
    .breakdown-item.incomplete {
      border-color: #17a2b8;
    }
    /* Issue Categories */ .issue-categories {
      margin-bottom: 2rem;
      padding: 2rem;
      background: #f8f9fa;
      border-radius: 12px;
      border: 1px solid #dee2e6;
    }
    .issue-categories h2 {
      color: #333333;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }
    .categories-description {
      color: #666666;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      text-align: center;
    }
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .category-item {
      background: #ffffff;
      border-radius: 10px;
      padding: 1.5rem;
      border: 2px solid #e9ecef;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .category-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      border-color: #4a9eff;
    }
    .category-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .category-title {
      font-size: 1rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 0.5rem;
    }
    .category-count {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffc107;
      margin-bottom: 0.5rem;
    }
    .category-description {
      font-size: 0.85rem;
      color: #666666;
      line-height: 1.4;
    }
    /* Legend Description */ .legend-description {
      text-align: center;
      color: #cccccc;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    /* Status Explanation */ .status-explanation {
      margin-top: 2rem;
      padding: 1.5rem;
      background: #f8f9fa;
      border-radius: 8px;
      border: 1px solid #dee2e6;
    }
    .status-explanation h2 {
      color: #333333;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .status-item {
      padding: 1rem;
      background: #ffffff;
      border-radius: 6px;
      border: 1px solid #e9ecef;
      font-size: 0.9rem;
      line-height: 1.5;
      color: #555555;
    }
    .status-item strong {
      color: #333333;
      font-weight: 600;
    }
    /* Test Results Summary Styles */ .test-overview {
      margin-bottom: 1rem;
    }
    .test-overview h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.4rem;
      text-align: center;
    }
    .overview-description {
      margin-bottom: 1rem;
    }
    .overview-description p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0.8rem;
      background: #ffffff;
      padding: 1.5rem;
      border-radius: 8px;
      border: 2px solid #e9ecef;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .overview-description strong {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
    }
    .results-summary {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .summary-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    
    .summary-count {
      font-size: 2rem;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      color: #333333;
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    .summary-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.8rem;
      margin: 0;
      line-height: 1.4;
    }
    /* Passed Tests Categories */ .passed-tests {
      margin-bottom: 1rem;
    }
    .passed-tests h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.4rem;
      text-align: center;
    }
    .category-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .category-row {
      display: flex;
      align-items: center;
      padding: 0.75rem;
      background: #ffffff;
      border: 1px solid #e9ecef;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
    .category-row:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .category-name {
      flex: 1;
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
    }
    .category-bar {
      flex: 2;
      height: 8px;
      background: #e9ecef;
      border-radius: 4px;
      margin: 0 1.5rem;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      background: #4a9eff;
      border-radius: 4px;
      transition: width 0.3s ease;
    }
    .category-count {
      min-width: 40px;
      text-align: right;
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
    }
    /* User-Friendly Executive Summary Styles */ .overview-card {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }
    .overview-icon {
      font-size: 3rem;
      flex-shrink: 0;
    }
    .overview-text {
      flex: 1;
    }
    .overview-description {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    /* Compliance Formula Styles */ .compliance-formula {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
    .formula-icon {
      font-size: 1.5rem;
      margin-top: 0.2rem;
    }
    .formula-content h3 {
      color: #2c3e50;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .formula-content p {
      margin: 0 0 0.5rem 0;
      color: #495057;
      font-size: 0.95rem;
    }
    .formula-content p:last-child {
      margin-bottom: 0;
    }
    .formula-note {
      font-style: italic;
      color: #6c757d;
      font-size: 0.9rem;
    }
    /* Grouped Violations Table Styles */ .grouped-violations {
      margin-bottom: 2rem;
    }
    .grouped-violations h2 {
      color: #2c3e50;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .violations-table-container {
      background: #ffffff;
      border: 1px solid #e1e5e9;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .violations-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    .violations-table thead {
      background: #f8f9fa;
    }
    .violations-table th {
      padding: 1rem 0.75rem;
      text-align: left;
      font-weight: 600;
      color: #495057;
      border-bottom: 2px solid #e9ecef;
    }
    .violations-table td {
      padding: 1rem 0.75rem;
      border-bottom: 1px solid #e9ecef;
      vertical-align: top;
    }
    .violations-table tbody tr:hover {
      background: #f8f9fa;
    }
    .rule-name {
      min-width: 200px;
    }
    .rule-title {
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 0.25rem;
    }
    .rule-description {
      font-size: 0.85rem;
      color: #6c757d;
      font-style: italic;
    }
    .instance-count {
      font-weight: 600;
      color: #dc3545;
      text-align: center;
    }
    .impact-level {
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
    }
    .impact-level.critical {
      background: #f8d7da;
      color: #721c24;
    }
    .impact-level.serious {
      background: #fff3cd;
      color: #856404;
    }
    .impact-level.moderate {
      background: #d1ecf1;
      color: #0c5460;
    }
    .owner {
      font-weight: 500;
      color: #495057;
      text-align: center;
    }
    .effort {
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
    }
    .effort.low {
      background: #d4edda;
      color: #155724;
    }
    .effort.medium {
      background: #fff3cd;
      color: #856404;
    }
    .effort.high {
      background: #f8d7da;
      color: #721c24;
    }
    .priority {
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
    }
    .priority.now {
      background: #dc3545;
      color: #ffffff;
    }
    .priority.next {
      background: #fd7e14;
      color: #ffffff;
    }
    .priority.later {
      background: #6c757d;
      color: #ffffff;
    }
    .violations-summary {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      background: #f8f9fa;
      padding: 1rem;
      border-radius: 6px;
    }
    
    .summary-label {
      font-size: 0.85rem;
      color: #6c757d;
      font-weight: 500;
    }
    .summary-value {
      font-size: 0.95rem;
      color: #2c3e50;
      font-weight: 600;
    }
    /* Enhanced Priority Actions with Tags */ .action-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }
    .action-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .action-tags .tag {
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .action-tags .tag.owner {
      background: #e3f2fd;
      color: #1976d2;
    }
    .action-tags .tag.effort {
      background: #f3e5f5;
      color: #7b1fa2;
    }
    .action-tags .tag.priority {
      background: #e8f5e8;
      color: #2e7d32;
    }
    .business-impact {
      margin-top: 0.75rem;
      padding: 0.75rem;
      background: #fff3cd;
      border-left: 4px solid #ffc107;
      border-radius: 4px;
      font-size: 0.9rem;
      color: #856404;
    }
    .business-impact strong {
      color: #6c4a00;
    }
    /* Consolidated Top Violations Styles */ .top-violations-consolidated {
      margin-bottom: 2rem;
    }
    .top-violations-consolidated h2 {
      color: #2c3e50;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .violations-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .category-card {
      background: #ffffff;
      border: 1px solid #e1e5e9;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .category-card.critical {
      border-left: 4px solid #dc3545;
    }
    .category-card.serious {
      border-left: 4px solid #fd7e14;
    }
    .category-card.moderate {
      border-left: 4px solid #ffc107;
    }
    .category-card.minor {
      border-left: 4px solid #6c757d;
    }
    .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    .category-header h3 {
      color: #2c3e50;
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0;
    }
    .severity-badge {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #ffffff;
    }
    .severity-badge.critical {
      background: #dc3545;
    }
    .severity-badge.serious {
      background: #fd7e14;
    }
    .severity-badge.moderate {
      background: #ffc107;
      color: #000000;
    }
    .severity-badge.minor {
      background: #6c757d;
    }
    .category-description {
      color: #6c757d;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      font-style: italic;
    }
    .category-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .issue-item {
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 6px;
      border: 1px solid #e9ecef;
    }
    .issue-name {
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
    .issue-details {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
      flex-wrap: wrap;
    }
    .instance-count {
      background: #e3f2fd;
      color: #1976d2;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .owner-tag {
      background: #f3e5f5;
      color: #7b1fa2;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .effort-tag {
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .effort-tag.low {
      background: #d4edda;
      color: #155724;
    }
    .effort-tag.medium {
      background: #fff3cd;
      color: #856404;
    }
    .effort-tag.high {
      background: #f8d7da;
      color: #721c24;
    }
    .business-impact {
      font-size: 0.85rem;
      color: #856404;
      background: #fff3cd;
      padding: 0.5rem;
      border-radius: 4px;
      border-left: 3px solid #ffc107;
    }
    .no-issues {
      text-align: center;
      color: #28a745;
      font-weight: 600;
      padding: 1rem;
      background: #d4edda;
      border-radius: 6px;
    }
    .issue-summary {
      text-align: center;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 6px;
    }
    .summary-text {
      display: block;
      color: #6c757d;
      margin-bottom: 0.5rem;
    }
    .summary-action {
      display: block;
      color: #007bff;
      font-weight: 500;
      font-size: 0.9rem;
    }
    /* Data Source Note Styles */ .stat-source {
      font-size: 0.75rem;
      color: #6c757d;
      margin-top: 0.25rem;
      font-style: italic;
    }
    .data-source-note {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1.5rem;
      margin-top: 1.5rem;
    }
    .source-icon {
      font-size: 1.5rem;
      margin-top: 0.2rem;
    }
    .source-content h4 {
      color: #2c3e50;
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .source-content p {
      color: #495057;
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
    }
    /* Quick Overview Dashboard Styles */
    .compliance-status {
      background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
      border: 2px solid #28a745;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
    }
    .status-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .status-header h2 {
      margin: 0;
      color: #2c3e50;
      font-size: 1.8rem;
    }
    .compliance-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: #28a745;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-weight: 600;
    }
    .badge-icon {
      font-size: 1.2rem;
    }
    .status-description p {
      margin: 0;
      color: #2c3e50;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    .priority-dashboard {
      margin-bottom: 2rem;
    }
    .priority-dashboard h3 {
      color: #2c3e50;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }
    .priority-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .priority-item {
      background: #ffffff;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: all 0.3s ease;
    }
    .priority-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .priority-item.immediate {
      border-color: #dc3545;
      background: #fff5f5;
    }
    .priority-item.planned {
      border-color: #ffc107;
      background: #fffbf0;
    }
    .priority-item.enhancement {
      border-color: #17a2b8;
      background: #f0f9ff;
    }
    .priority-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }
    .priority-content h4 {
      margin: 0 0 0.5rem 0;
      color: #2c3e50;
      font-size: 1.2rem;
    }
    .priority-content p {
      margin: 0 0 0.5rem 0;
      font-weight: 600;
      color: #495057;
    }
    .priority-note {
      font-size: 0.9rem;
      color: #6c757d;
      font-style: italic;
    }
    .key-insights {
      margin-bottom: 2rem;
    }
    .key-insights h3 {
      color: #2c3e50;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .insight-card {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .insight-card.positive {
      border-left: 4px solid #28a745;
    }
    .insight-card.improvement {
      border-left: 4px solid #ffc107;
    }
    .insight-card.next-steps {
      border-left: 4px solid #17a2b8;
    }
    .insight-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }
    .insight-content h4 {
      margin: 0 0 1rem 0;
      color: #2c3e50;
      font-size: 1.1rem;
    }
    .insight-content ul {
      margin: 0;
      padding-left: 1.2rem;
    }
    .insight-content li {
      margin-bottom: 0.5rem;
      color: #495057;
      font-size: 0.95rem;
    }
    /* Individual Severity Pages Styles */ .critical-issues-content, .serious-issues-content, .moderate-issues-content, .minor-issues-content {
      margin-top: 0.5rem;
    }
    .issues-summary {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 2rem;
      margin: 1rem 0;
    }
    .summary-overview h3 {
      color: #2c3e50;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .summary-overview p {
      color: #495057;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .issues-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 8px;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .stat-label {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 0.5rem;
    }
    .stat-value {
      font-size: 1.2rem;
      font-weight: 600;
      color: #2c3e50;
    }
    .action-required {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      border-radius: 8px;
      padding: 1rem;
    }
    .action-required h4 {
      color: #856404;
      margin: 0 0 0.5rem 0;
      font-size: 1.1rem;
    }
    .action-required p {
      color: #856404;
      margin: 0;
      font-size: 0.95rem;
    }
    /* Test Results Summary Styles */
    .test-overview {
      margin-bottom: 1.75rem;
    }
    .test-overview h2 {
      color: #2c3e50;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .overview-description {
      margin-bottom: 1.75rem;
      background: none;
      border: none;
      padding: 0;
   } 
    .overview-description p {
      margin: 0 0 0.90rem 0;
      color: #495057;
      font-size: 0.85rem;
      line-height: 1.3;
    }
    .overview-description p:last-child {
      margin-bottom: 0;
    }
    .results-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 0.75rem;
      align-items: center;
    }
   
    .summary-item.passed {
      color: #28a745;
    }
    .summary-item.inapplicable {
      color: #6c757d;
    }
    .summary-item.total {
      color: #007bff;
    }
    .summary-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .summary-content h3 {
      margin: 0 0 0.5rem 0;
      color: #2c3e50;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .summary-count {
      font-size: 1.8rem;
      font-weight: 700;
      color: inherit;
      line-height: 1;
    }
    .passed-tests {
      margin-bottom: 0;
    }
    .passed-tests h2 {
      color: #2c3e50;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    }
    .category-list {
      margin: 0;
      background: none;
      border: none;
      padding: 0;
    }
    .category-row {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
      padding: 0.25rem 0;
    }
    .category-row:last-child {
      margin-bottom: 0;
    }
    .category-name {
      flex: 1;
      font-weight: 600;
      color: #2c3e50;
      font-size: 0.85rem;
      padding: 10px;
    }
    .category-bar {
      flex: 2;
      height: 4px;
      background: #e9ecef;
      border-radius: 2px;
      margin: 0 0.5rem;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      background: linear-gradient(90deg, #F37022 0%, #F37022 100%);
      border-radius: 2px;
      transition: width 0.3s ease;
    }
    .category-count {
      font-weight: 700;
      color: #2c3e50;
      font-size: 0.9rem;
      min-width: 30px;
      text-align: right;
      padding: 10px;
    }
    .no-critical-issues {
      text-align: center;
      padding: 1.5rem 1rem;
      background: #d4edda;
      border: 2px solid #c3e6cb;
      border-radius: 12px;
      margin: 0.75rem 0;
    }
    .success-icon {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .no-critical-issues h2 {
      color: #155724;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }
    .no-critical-issues p {
      color: #155724;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .success-details {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .detail-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .detail-label {
      font-size: 0.9rem;
      color: #6c757d;
      font-weight: 500;
    }
    .detail-value {
      font-size: 1rem;
      font-weight: 600;
    }
    .detail-value.success {
      color: #28a745;
    }
    .issues-summary {
      margin-bottom: 1rem;
    }
    .summary-card {
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      max-width: 250px;
      margin: 0 auto;
    }
    .summary-number {
      font-size: 2rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 0.4rem;
    }
    .summary-label {
      font-size: 1rem;
      font-weight: 600;
      color: #495057;
      margin-bottom: 0.4rem;
    }
    .summary-percentage {
      font-size: 1rem;
      color: #6c757d;
    }
    .issues-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .issue-card {
      background: #ffffff;
      border: 1px solid #e1e5e9;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .issue-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    .issue-header h3 {
      color: #2c3e50;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }
    .issue-badge {
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #ffffff;
    }
    .issue-badge.serious {
      background: #fd7e14;
    }
    .issue-badge.moderate {
      background: #ffc107;
      color: #000000;
    }
    .issue-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }
    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f8f9fa;
    }
    .detail-label {
      font-weight: 500;
      color: #6c757d;
    }
    .detail-value {
      font-weight: 600;
      color: #2c3e50;
    }
    .effort-medium {
      color: #856404;
      background: #fff3cd;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }
    .effort-low {
      color: #155724;
      background: #d4edda;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }
    .priority-now {
      color: #ffffff;
      background: #dc3545;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }
    .priority-next {
      color: #ffffff;
      background: #fd7e14;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }
    .business-impact {
      background: #fff3cd;
      border-left: 4px solid #ffc107;
      padding: 0.6rem;
      border-radius: 4px;
      margin-bottom: 0.6rem;
      color: #856404;
      font-size: 0.8rem;
    }
    .remediation-notes {
      background: #e3f2fd;
      border-left: 4px solid #2196f3;
      padding: 0.6rem;
      border-radius: 4px;
      color: #0d47a1;
      font-size: 0.8rem;
    }
    .minor-issues-overview {
      margin: 1rem 0;
    }
    .overview-card {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 1rem;
    }
    .overview-icon {
      font-size: 1.2rem;
      margin-top: 0.2rem;
    }
    .overview-content h3 {
      color: #2c3e50;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .overview-content p {
      color: #495057;
      font-size: 0.85rem;
      line-height: 1.4;
      margin-bottom: 0.75rem;
    }
    .overview-details {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .overview-description:last-child {
      margin-bottom: 0;
    }
    /* Status Overview */ .status-overview {
      margin-bottom: 2rem;
    }
    .status-overview h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .status-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
    }
    .status-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .status-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .status-card.success {
      border-color: #28a745;
      background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, #ffffff 100%);
    }
    .status-card.warning {
      border-color: #ffc107;
      background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, #ffffff 100%);
    }
    .status-card.info {
      border-color: #17a2b8;
      background: linear-gradient(135deg, rgba(23, 162, 184, 0.05) 0%, #ffffff 100%);
    }
    .status-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .status-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .status-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.4;
      margin: 0;
    }
    /* Why This Matters */ .why-matters {
      margin-bottom: 2rem;
    }
    .why-matters h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .matters-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .matter-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .matter-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .matter-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }
    .matter-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .matter-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
    }
    /* Enhanced Priority Actions */ .actions-intro {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .actions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .action-item {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .action-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .action-item.immediate {
      border-color: #dc3545;
      background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, #ffffff 100%);
    }
    .action-item.high {
      border-color: #ffc107;
      background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, #ffffff 100%);
    }
    .action-item h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }
    .action-item p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.4;
      margin: 0;
    }
    /* Next Steps */ .next-steps {
      margin-bottom: 2rem;
    }
    .next-steps h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .steps-timeline {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }
    .step-item {
      flex: 1;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .step-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .step-number {
      width: 40px;
      height: 40px;
      background: #4a9eff;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .step-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .step-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
    }
    /* Detailed Findings Summary Styles */ .findings-overview {
      margin-bottom: 1.5rem;
    }
    .overview-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .stat-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .stat-icon {
      font-size: 2.5rem;
      opacity: 0.8;
    }
    .stat-content {
      flex: 1;
    }
    .stat-number {
      font-size: 2rem;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      color: #4a9eff;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
    }
    /* Severity Breakdown */ .severity-breakdown {
      margin-bottom: 1.5rem;
    }
    .severity-breakdown h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .severity-chart {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .severity-item {
      margin-bottom: 1rem;
    }
    .severity-item:last-child {
      margin-bottom: 0;
    }
    .severity-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }
    .severity-label {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
    }
    .severity-count {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 700;
    }
    .severity-bar {
      background: #f8f9fa;
      border-radius: 10px;
      height: 20px;
      overflow: hidden;
      margin-bottom: 0.5rem;
    }
    .severity-fill {
      height: 100%;
      border-radius: 10px;
      transition: width 0.3s ease;
    }
    .severity-fill.critical {
      background: linear-gradient(90deg, #dc3545, #c82333);
    }
    .severity-fill.serious {
      background: linear-gradient(90deg, #ffc107, #e0a800);
    }
    .severity-fill.moderate {
      background: linear-gradient(90deg, #17a2b8, #138496);
    }
    .severity-fill.minor {
      background: linear-gradient(90deg, #28a745, #1e7e34);
    }
    .severity-percentage {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      text-align: right;
    }
    /* Category Breakdown */ .category-breakdown {
      margin-bottom: 3rem;
    }
    .category-breakdown h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .category-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .category-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .category-card.color {
      border-color: #ffc107;
    }
    .category-card.structure {
      border-color: #17a2b8;
    }
    .category-card.navigation {
      border-color: #28a745;
    }
    .category-card.forms {
      border-color: #6f42c1;
    }
    .category-card.media {
      border-color: #fd7e14;
    }
    .category-icon {
      font-size: 2.5rem;
      opacity: 0.8;
    }
    .category-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .category-stats {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
    }
    .category-stats .stat-number {
      font-size: 1.5rem;
      color: #4a9eff;
      margin: 0;
    }
    .category-stats .stat-label {
      font-size: 0.9rem;
      color: #666666;
    }
    .category-pages {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
    }
    .category-description {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid #f8f9fa;
    }
    /* Category Summary */ .category-summary {
      margin-top: 3rem;
    }
    .category-summary h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .summary-content {
      background: #ffffff;
      
      border-radius: 12px;
      padding: 2rem;
      
    }
    .summary-text {
      margin-bottom: 2rem;
    }
    .summary-text p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .summary-text p:last-child {
      margin-bottom: 0;
    }
    .summary-actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .summary-actions .action-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 8px;
      border-left: 4px solid #4a9eff;
    }
    .summary-actions .action-icon {
      font-size: 1.2rem;
    }
    .summary-actions .action-text {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
    }
    /* Top Issues */ .top-issues {
      margin-bottom: 3rem;
    }
    .top-issues h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .top-issues-list {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .top-issue-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid #f8f9fa;
    }
    .top-issue-item:last-child {
      border-bottom: none;
    }
    .issue-rank {
      background: #4a9eff;
      color: #ffffff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .issue-info {
      flex: 1;
    }
    .issue-name {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .issue-details {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
    }
    .issue-severity {
      padding: 0.25rem 0.75rem;
      border-radius: 15px;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .issue-severity.critical {
      background: red;
      color: #ffffff;
    }

    .issue-severity.serious {
      background: #fff3cd;
      color: #856404;
    }
    .issue-severity.moderate {
      background: #d1ecf1;
      color: #0c5460;
    }
    .issue-severity.minor {
      background: #d4edda;
      color: #155724;
    }
    .issue-description {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-top: 0.5rem;
      font-style: italic;
    }
    /* Issue Analysis */ .issue-analysis {
      margin: 3rem 0;
    }
    .issue-analysis h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .analysis-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .analysis-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .analysis-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .analysis-icon {
      font-size: 2rem;
      opacity: 0.8;
    }
    .analysis-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .analysis-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    /* Fix Recommendations */ .fix-recommendations {
      margin-top: 3rem;
    }
    .fix-recommendations h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .recommendations-list {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .recommendation-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid #f8f9fa;
    }
    .recommendation-item:last-child {
      border-bottom: none;
    }
    .rec-number {
      background: #4a9eff;
      color: #ffffff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .rec-content {
      flex: 1;
    }
    .rec-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .rec-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }
    .rec-impact {
      background: #f8f9fa;
      color: #4a9eff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 15px;
      display: inline-block;
    }
    /* Impact Assessment */ .impact-assessment {
      margin-bottom: 3rem;
    }
    .impact-assessment h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .impact-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .impact-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .impact-icon {
      font-size: 2rem;
      opacity: 0.8;
    }
    .impact-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .impact-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    /* Detailed Report Reference */ .detailed-report-reference {
      margin-top: 1rem;
    }
    .reference-card {
      background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    }
    .reference-icon {
      font-size: 2.5rem;
      opacity: 0.9;
    }
    .reference-content h3 {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .reference-content p {
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 0.75rem;
      opacity: 0.9;
    }
    .reference-btn {
      background: #ffffff;
      color: #4a9eff;
      border: none;
      border-radius: 8px;
      padding: 0.6rem 1.25rem;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .reference-btn:hover {
      background: #f8f9fa;
      transform: translateY(-1px);
    }
    /* Remediation Timeline Styles */ .timeline-overview {
      margin-bottom: 3rem;
    }
    .timeline-overview h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }
    .timeline-description {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .timeline-phases {
      margin-bottom: 3rem;
    }
    .phase-item {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      margin-bottom: 2rem;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .phase-item.immediate {
      border-color: #dc3545;
    }
    .phase-item.short-term {
      border-color: #ffc107;
    }
    .phase-item.medium-term {
      border-color: #17a2b8;
    }
    .phase-item.long-term {
      border-color: #28a745;
    }
    .phase-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: #f8f9fa;
    }
    .phase-number {
      background: #4a9eff;
      color: #ffffff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .phase-title h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 0.25rem 0;
    }
    .phase-duration {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
    }
    .phase-content {
      padding: 1.5rem;
    }
    .phase-issues h4 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .phase-issues ul {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .phase-effort {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
    }
    .resource-requirements {
      margin-top: 3rem;
    }
    .resource-requirements h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .resource-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .resource-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .resource-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .resource-icon {
      font-size: 2rem;
      opacity: 0.8;
    }
    .resource-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .resource-content p {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      margin: 0;
    }
    /* Next Steps Styles */ .immediate-actions, .short-term-goals, .long-term-vision, .support-resources {
      margin-bottom: 3rem;
    }
    .immediate-actions h2, .short-term-goals h2, .long-term-vision h2, .support-resources h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    .action-steps {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid #f8f9fa;
    }
    .step-item:last-child {
      border-bottom: none;
    }
    .step-number {
      background: #4a9eff;
      color: #ffffff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .step-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    .goals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .goal-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .goal-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .goal-icon {
      font-size: 2rem;
      opacity: 0.8;
    }
    .goal-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .goal-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    .vision-content {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .vision-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .vision-benefits {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .vision-benefits li {
      margin-bottom: 0.5rem;
    }
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .resource-item {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .resource-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .resource-item h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .resource-item p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .resource-link {
      color: #4a9eff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
    }
    .resource-link:hover {
      text-decoration: underline;
    }
    /* Contact & Support Styles */ .contact-info, .additional-resources, .follow-up {
      margin-bottom: 3rem;
    }
    .contact-info h2, .additional-resources h2, .follow-up h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .contact-card {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .contact-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .contact-icon {
      font-size: 2rem;
      opacity: 0.8;
    }
    .contact-content h3 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .contact-content p {
      color: #4a9eff;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .contact-note {
      color: #666666;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.85rem;
    }
    .resources-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .follow-up-content {
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .follow-up-content p {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .follow-up-content ul {
      color: #555555;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .follow-up-content li {
      margin-bottom: 0.5rem;
    }
    /* Responsive Design */ @media (max-width: 768px) {
      .matrix-grid { grid-template-columns: repeat(2, 1fr);
      } .progress-labels { grid-template-columns: repeat(2, 1fr);
      } .legend-grid { grid-template-columns: 1fr;
      } .results-summary { flex-direction: column;
      } .status-cards { grid-template-columns: 1fr;
      } .steps-timeline { flex-direction: column;
      } .overview-card { flex-direction: column;
      text-align: center;
      } .summary-stats { grid-template-columns: repeat(2, 1fr);
      } .overview-stats { grid-template-columns: repeat(2, 1fr);
      } .category-grid { grid-template-columns: 1fr;
      } .impact-grid { grid-template-columns: 1fr;
      } .reference-card { flex-direction: column;
      text-align: center;
      } .summary-actions { flex-direction: column;
      } .actions-grid { grid-template-columns: 1fr;
      } .analysis-grid { grid-template-columns: 1fr;
      } .recommendation-item { flex-direction: column;
      text-align: center;
      } .resource-grid { grid-template-columns: 1fr;
      } .contact-grid { grid-template-columns: 1fr;
      } .goals-grid { grid-template-columns: 1fr;
      } .resources-grid { grid-template-columns: 1fr;
      } .phase-header { flex-direction: column;
      text-align: center;
      } .step-item { flex-direction: column;
      text-align: center;
      };
    }
    @media (max-width: 480px) {
      .matrix-grid { grid-template-columns: 1fr;
      } .progress-labels { grid-template-columns: 1fr;
      } .summary-stats { grid-template-columns: 1fr;
      } .overview-stats { grid-template-columns: 1fr;
      } .top-issue-item { flex-direction: column;
      text-align: center;
      gap: 0.5rem;
      };
    }
    /* Table of Contents Styles */ 
    .toc-content {
      max-width: 800px;
      margin: 0 auto;
      
    }
    .toc-section {
      margin-bottom: 3rem;
    }
    .toc-section:last-child {
      margin-bottom: 0;
    }
    .toc-section h2 {
      color: #333333;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 1rem;
      text-align: left;
    }
    .section-separator {
      width: 100%;
      height: 1px;
      background: #333333;
      margin-bottom: 1.5rem;
    }
    .toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .toc-list li {
      margin-bottom: 0.75rem;
      padding-left: 1.5rem;
      position: relative;
      font-family: 'avenirmedium', 'Avenir Medium', Arial, sans-serif;
      font-size: 0.95rem;
      color: #333333;
      line-height: 1.5;
    }
    .toc-list li:before {
      content: "•";
      position: absolute;
      left: 0;
      color: #333333;
      font-weight: bold;
      font-size: 1.2rem;
    }
    .toc-list li:last-child {
      margin-bottom: 0;
    }
    /* Table of Contents Responsive Design */ @media (max-width: 768px) {
      .toc-content { padding: 1.5rem;
      } .toc-section { margin-bottom: 2rem;
      } .toc-section h2 { font-size: 1.3rem;
      } .toc-list li { font-size: 0.9rem;
        padding-left: 1.25rem;
      };
      }
    @media (max-width: 480px) {
      .toc-content { padding: 1rem;
      } .toc-section h2 { font-size: 1.2rem;
      } .toc-list li { font-size: 0.85rem;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
      };
    }

/*
    .summary-item {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 1rem;
      background: #ffffff;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

     .summary-item {
      text-align: center;
      padding: 0.75rem;
      background: none;
      border: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 80px;
    }

    .summary-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
      */