.users {
    table-layout: fixed;
    table-height: auto;
    height: auto;
    width: 40%;
    /*white-space: nowrap;*/
  
  }
  /* Column widths are based on these cells */
  .row-ID {
    width: 5%;
  
  }
  .row-name {
    width: 50%;
    
  }
  
  
  .users td {
   background: lightblue;
    text-overflow: ellipsis;
  }
  .users th {
    background: darkblue;
    color: white;
    
  }
  .users td,
  .users th {
    text-align: left;
    padding: 5px 10px;
  
  }
  .users tr:nth-child(even) {
    background: lightblue;
  }