
.styled-table {
    border-collapse: collapse;
    /* background-color: #E1FCFD; */
    background-color:rgb(240, 238, 235);
    margin: 25px 0;
    font-size: 1em;
    font-family: sans-serif;
    min-width: 1000px;
    box-shadow: 0 0 0px navy;
}

.styled-table thead tr {
    color: white;
    text-align: left;
	font-size: 1.5em;
    background-color: navy;
}


.styled-table th{
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 0px;
    /* border-top-left-radius: 20px; */
}

.styled-table td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.styled-table tbody tr {
    border-bottom: 2px solid #037671;
}

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

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid navy
}

.styled-table tbody th.active-row {
    font-weight: bold;
    color: #009879;
    background-color: navy;
}

td {
    padding: 10px;
    text-align: left;
}

th {
    padding: 20px;
    text-align: left;
}

a {
    color: black;
    text-decoration:blue;
}