.table-wrapper{
   width: 100%;
  overflow-x: auto;        /* Enables left-right scrolling */
  overflow-y: hidden;      /* Prevents vertical scrollbars */
  -webkit-overflow-scrolling: touch; /
}
.custom-table {
  width: 100%;
  border-collapse: collapse;
}
.custom-table thead{
  background: #e5e7ea;
}
.custom-table th,
.custom-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  width: 16.25%;
}

.custom-table img {
  max-width: 60px;
  height: auto;
  display: inline-block;
}


.custom-table .first-td{text-align: start;} 
