  /* Profit Sharing Responsive Styles */
  .profit-sharing-mobile .profit-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .profit-sharing-mobile .profit-label {
    font-weight: bold;
    text-align: left;
    flex: 0 0 60%;
    padding-right: 10px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .profit-sharing-mobile .profit-value {
    text-align: right;
    flex: 0 0 40%;
    padding-left: 10px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .profit-sharing-mobile .footer-note {
    display: block;
    border-bottom: none;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .profit-sharing-desktop {
      display: none;
    }
    
    .profit-sharing-mobile {
      display: block !important;
      width: 100%;
      box-sizing: border-box;
      padding: 0 10px;
    }
    
    #profitSharingTableMobile {
      box-sizing: border-box;
      width: 100%;
      overflow: hidden;
    }
    
    /* Font size adjustment for mobile */
    .profit-sharing-mobile .profit-label,
    .profit-sharing-mobile .profit-value {
      font-size: 14px;
    }
  }
