table {
    width: 100%;
    border-collapse: collapse;
}

table a {
    text-decoration: none;
    color: inherit !important;
}


/* Zebra striping */


/* tr:nth-of-type(odd) {
    background: #eee;
} */

th {
    /* background: #333; */
    font-weight: bold;
}

td,
th {
    padding: 12px 20px;
    /* border: 1px solid #ccc; */
    text-align: right;
}

td {
    vertical-align: middle;
}

@media only screen and (max-width: 768px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
        /* font-size: 18px; */
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
        display: none
    }
    tr {
        border-bottom: 1px solid #f1f1f1;
    }
    td {
        /* Behave  like a "row" */
        border: 0;
        /* border-bottom: 1px solid #eee; */
        position: relative;
        padding-right: 50%;
        text-align: left;
    }
    td:before {
        /* Now like a table header */
        content: attr(data-title);
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        right: 6px;
        width: 45%;
        padding-left: 10px;
        white-space: nowrap;
        text-align: right;
        color: #999;
    }
    /* td:nth-of-type(2):before {
        content: "Last Name";
    }
    td:nth-of-type(3):before {
        content: "Job Title";
    }
    td:nth-of-type(4):before {
        content: "Favorite Color";
    }
    td:nth-of-type(5):before {
        content: "Wars of Trek?";
    }
    td:nth-of-type(6):before {
        content: "Secret Alias";
    }
    td:nth-of-type(7):before {
        content: "Date of Birth";
    }
    td:nth-of-type(8):before {
        content: "Dream Vacation City";
    }
    td:nth-of-type(9):before {
        content: "GPA";
    }
    td:nth-of-type(10):before {
        content: "Arbitrary Data";
    } */
    .row-title {
        float: right;
    }
}

@media screen and (min-width: 768px) {
    .row-title {
        display: none;
    }
}