table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0px 5px;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table tr {
    border: 1px solid #ddd;
    padding: .25rem;
}

table th,
table td {
    padding: .5rem;
    text-align: left;
}

@media screen and (max-width: 600px) {
    table thead {
        overflow: hidden;
        position: absolute;
        width: 1px;
    }

    table tr {
        display: block;
        margin-bottom: 0.5rem;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: left;
    }

    table td:last-child {
        border-bottom: 0;
    }

    table.responsive-table tbody td::before {
        content: attr(data-title);
        font-weight: bold;
    }
}
