table {
    border-collapse: collapse;
    cellpadding: 5px;
}
table thead {
   /* background-color: blue;
    color: white; */
}
table thead tr {}
table thead tr th {
    padding: 0.5em 1em;
    text-align: left;
}
table tbody {}
table tbody tr {}

table tbody tr:nth-of-type(2n) {
  /*  background-color: lightgrey; */
}
table tbody tr:hover {
  /*  background-color: yellow;*/
}
table tbody tr td {
    padding: 0.75em 0.75em;
    text-align: left;
	 vertical-align: top;
}
table tbody tr td.numeric {
    text-align: right;
}
table tbody tr td ul.actions li {  
    list-style: none;
    display: inline;
}
table tbody tr td ul.actions {}
table tbody tr td ul.actions {}
@media screen and (max-width: 600px) {
table {
    width: 100%;
}
table thead {
    display: none;
}
table tbody tr {
    border: none;
    display: block; 
    margin: 1em;
}
table tbody tr td {
    padding: 0.4em 1em;
    text-align: left;
    display: block;
    width: block;
}
table tbody tr td[data-label="#"] {
    display: none;
}
table tbody tr td[data-label]:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
}
table tbody tr td.numeric {
    text-align: left;
}

