.table_form
{ 
  padding: 10px 30px 30px 30px;
  /* overflow-y: hidden;
  overflow-x: auto; */
  display: inline-block;
  border: 1px solid gray;
  margin-top: 8px;
}

 
  .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);} */

  .tbl_row
  { 
    display: flex; 
    justify-content: space-between; 
  }

  .tbl_row > div
  {
    flex: 1 1 0; 
    text-align: left;
    padding-left: 10px;
  }
  

  .table_css tbody tr:hover,
  .tbl_row: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;
  }
  
  @media only screen and (max-width:720px), (max-device-width : 720px) /* desktop and mobile orientation: portrait */
  { 
    .table_form
    { 
      overflow-x: auto;
      width: 100%;
    }
  }