
  /* Container ensures max-width on desktop and full width on mobile */
  .sx-desc {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Critical fix for mobile tables */
  .sx-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on iOS */
    margin-top: 15px;
  }

  /* Ensure table elements don't collapse or overlap */
  table {
    width: 100%;
    min-width: 600px; /* Forces scroll bar if screen is smaller than 600px */
    border-collapse: collapse;
  }

  th, td {
    padding: 10px;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
  }
