﻿table {
    width: 100%;
    border-collapse: collapse;
    /*table-layout: fixed;*/
    border-bottom: 1px solid #e4e4e4;
}

    table td {
        background-color: transparent;
        padding: 0.75rem 1.25rem;
    }

    table th {
        font-weight: 400;
        color: #999;
        font-size: 1em;
        letter-spacing: 0.075em;
        line-height: 1.3;
        text-transform: uppercase;
        padding: 1rem 1.25rem;
        text-align: left;
    }

    table thead + tbody .sub-head:first-child ~ tr:nth-child(even),
    table thead + tbody tr:nth-child(odd) {
        background-color: #fff;
    }

    table thead + tbody tr:nth-child(even),
    table tr:nth-child(odd) {
        background-color: #f7f7f7;
    }

    table tr {
        border-left: 1px solid #e4e4e4;
        border-right: 1px solid #e4e4e4;
    }

    table thead th {
        background-color: #626262;
        color: #fff;
    }

    table tr td .action-bar {
        display: flex;
        margin-left: auto;
        flex-direction: row;
        justify-content: flex-end;
    }

    table tr td .action-bar button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 3px;
        text-decoration: none;
        color: #626262;
    }

        table tr td .action-bar button:hover {
            background-color: #1456f1;
            color: #fff;
        }
