.left-align {
    text-align: left;
  }
  
  .center-align {
    text-align: center;
  }
  
  .right-align {
    text-align: right;
  }
  
  /* Table container styling */
  .sds-container {
      margin-top: 20px;
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
  }
  
  .sds-row {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-wrap: wrap;
  }
  
  .sds-column {
      width: 100%;
      margin-bottom: 20px;
      flex: 0 0 100%;
      max-width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
  }
  
  .sds-column-wrapper {
      background-size: cover;
      display: flex;
      justify-content: flex-start;
  }
  
  /* Responsive table with horizontal scrolling */
  .sds-table-responsive {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 1em;
      font-weight: 400;
  }
  
  /* Ensure the table doesn't shrink below a minimum width */
  .sds-table-responsive table {
      min-width: 650px; /* Adjust this value based on your content */
      width: 100%;
      border-collapse: collapse;
      border-spacing: 0;
  }
  
  .sds-table-responsive td, 
  .sds-table-responsive th {
      border: 1px solid #dcdcdc;
      padding: 10px 5px;
      white-space: nowrap; /* Prevents text from wrapping */
  }
  .sds-table-responsive td {
    color: #58565b
  }
  
  .sds-table-responsive td a{
    text-decoration: none;
    color: #4469b2
  }
  .sds-table-responsive th {
      font-weight: bold;
      background-color: #58565b;
  }
  
  .sds-table-responsive tr:nth-child(even) {
      background-color: #f9f9f9;
  }

  .woocommerce-tabs {
    overflow: hidden;
    padding-top: 60px;
}

table th {
    background-color: #58565b;
    color: #ffffff;
    padding: 8px 20px;
}
  
  @media only screen and (max-width: 800px) {
    #wrapper .woocommerce-tabs .panel, #wrapper .woocommerce-tabs .tabs {
        float: none;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}