p strong {
    font-size: 2em;
    font-weight: bold !important;
    display: block;
    /* margin: 1em 0; */
    color: #0a4595;
}
  .table-wrapper {
    overflow-x: visible;
  }
  
  .table-wrapper p {
    overflow: visible;
    white-space: normal;
  }
  
  .table-wrapper table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
  }
  
  /* Mobile / small screen adjustments */
  @media (max-width: 768px) {
    .table-wrapper {
      overflow-x: hidden;
    }
  
    .table-wrapper table {
      display: block;         
      width: max-content;    
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }