* {
    font-family: Arial, Work Sans, sans-serif; /* Change your font family */
}

.content-table {
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 16px;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #014327;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 5px 10px;
    text-align: center;
}

.content-table tbody tr {
    border-bottom: 1px solid #646464;
}

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

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}
