  .table_form
  { 
    padding: 10px 0px 30px 0px;
      overflow-y: hidden;
      overflow-x: auto;
  }

  
  .table_css, .table_css_txt_center 
  {
    margin: 0 auto;
    border-collapse: collapse;

    width: 80%;

    /* min-width: 80%;
    max-width: 90%; */
  }

  .table_css_700_px
  { max-width: 700px; }

  .table_css_50_pr
  { width: 50%; }

  
  .table_css td, .table_css th,
  .table_css_txt_center td, .table_css_txt_center th
   {
    border-bottom: 1px solid var(--shadow);
    padding: 8px;
    /* cursor: pointer; */
  }

  .table_css td, .table_css th {
    text-align: left;
  }

  .table_css td:last-child, .table_css th:last-child {
    text-align: right;
  }


  .table_css_txt_center td, .table_css_txt_center th {
    text-align: center;
  }


  .table_css td a
  {
    /* background-color: aqua; */
    display: block;
    height:100%;
    width:100%;
  }


  
  /* .table_css tr:nth-child(even){background-color: var(--shadow);} */
  
  .table_css tbody tr:hover {background-color: var(--shadow);}
  
  .table_css th {
    padding-top: 12px;
    padding-bottom: 1px;
    color: var(--light_gray);
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    vertical-align: bottom;
  }
  



  [tbl_container]
  {
      overflow: hidden;
      margin-bottom: 8px;
      margin-left: 8px;
  }
  [tbl_container] [tbl_header]
  {
      text-align: left;
      font-weight: bold;
      font-size: 16px;
  }
  [tbl_container] [tbl_header] span
  {
      font-size: 12px;
      font-style: italic;
      padding: 10px;
      color: gray;
  }



  .table_wrapper
  {
    display: inline-block; 
    overflow: auto; 
    width: -webkit-fill-available;
    max-height: 500px;
  }

  
  .table_wrapper > table > thead:nth-child(1)  /* thead:nth-child(-n + 3) */
  {
    position: sticky; 
    background: #f5f5f5;
    height: 42px;
    top: -1px; 
    z-index: 99;
  }




table.make_table_sortable thead th
{
  cursor: pointer;

  &::after
  {
    content: '↕';
  }

  &[data-sort="asc"]::after
  {
    content: '▲';
  }
  &[data-sort="desc"]::after
  {
    content: '▼';
  }


  &::after
  {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
    color: black;
  }
}






  @media screen and (max-width: 720px) {
    .table_css, .table_css_txt_center
    {
      width: 100%;
    }
  }
