.styled-table {
    border-collapse: collapse;
    margin: 25px auto;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 640px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}



.styled-table th,
.styled-table td {
    padding: 6px 7px;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #36c;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #36c;
}

.styled-table .head {
    background-color: #36c;
    color: #ffffff;
    text-align: left;
}