.styled-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
}
.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
}
.styled-table th,
.styled-table td {
    padding: 6px 7px;
    border: 1px solid #dddddd;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
/*.styled-table tbody tr:nth-of-type(even) {*/
/*    background-color: #f3f3f3;*/
/*}*/
.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}