table {
    border: 1px solid #ccc;
    width: 90%;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0px auto 20px;
}

table tr {
    border: 1px solid #ddd;
    padding: 5px;
}

table th,
table td {
    padding: 10px;
    text-align: center;
}

table th {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
}

tbody tr:hover {
    background-color: rgb(224, 240, 215);
    color: black;
}

thead th {
    color: rgb(5, 76, 118);
}

table th,
table td {
    cursor: default;
}

@media screen and (max-width: 1024px) {
    table {
        border: 0;
    }
    table thead {
        display: none;
    }
    table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
    }
    table td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
    }
    table td:last-child {
        border-bottom: 0;
    }
    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}