/* Instructions:
Add the class 'byu-table' to any tables you want this styling applied to.
Adding the additional classes 'gray-header' or 'navy-header' will allow for a solid header bar.
*/

.byu-table {
    color: #666;
    font-size: 12px;
    font-weight: normal;
    border: none;
    vertical-align: middle;
    font-family: Gotham A, Gotham B, Helvetica, sans-serif;
    padding: 10px;
    border-collapse: collapse;
    margin: 30px;
    text-align: left;
    background-color: #fff;
}

.byu-table th {
    color: #002e5d;
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 14px;
}

.byu-table td {
    padding-top: 5px;
    font-weight: 200;
}

.byu-table img {
    max-width: 80px;
    max-height: 80px;
    margin: 0 50px 5px 20px;
    min-height: 80px;
}

.byu-table a {
    text-decoration: none;
    font-weight: 500;
    color: #003da5;
}

.byu-table tr:nth-child(odd) {
    vertical-align: top;
}

.byu-table tr:nth-child(even) {
    background-color: #e5e5e5;
    vertical-align: top;
}

/* ---- Gray header ---- */
.byu-table.gray-header th {
        background-color: #6a6a6b;
        color: #fff;
        font-weight: 500;
        padding: 8px 0;
     }

/* ---- Navy header ---- */
.byu-table.navy-header th {
    background-color: #002e5d;
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
}
