h2 {
    color: black;  
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background-color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.styled-table thead tr {
    background-color: rgb(88, 88, 255);
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    word-wrap: break-word;
    max-width: 300px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid red;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}


.checks-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.checks-table thead tr {
    background-color: rgb(88, 88, 255);
    color: #ffffff;
    text-align: left;
}

.checks-table th,
.checks-table td {
    padding: 12px 15px;
    word-wrap: break-word;
    max-width: 300px;
}

.checks-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.checks-table tbody tr:last-of-type {
    border-bottom: 2px solid red;
}

.checks-table tbody tr.good-row {
    font-weight: bold;
    color: #009879;
}
.checks-table tbody tr.bad-row {
    font-weight: bold;
    color: red;
}


a.biglink:link, a.biglink:visited {
    background-color: #f43636;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

a.biglink:hover, a.biglink:active {
background-color: red;
}