.data {
    width: 240px;
    background: rgba(250,250,250,0.9);
    overflow: hidden;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.1rem;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
}
.styled-table th,
.styled-table td {
    border-top-right-radius:calc(.35rem - 1px);
    border-top-left-radius:calc(.35rem - 1px);
    padding: 12px 15px;
}
.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;
}

.site-status-alive {
    color: #009879;
}
.table-status-alive thead {
    background-color: #009879;
}

.styled-table-volcano thead tr {
    background-color: #ed7468;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
}

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