/* Table */

table {

width: 100%;

&.default {
    width: 100%;

    tbody {
        tr {
            border-bottom: solid 1px _palette(border);
        }
    }

    td {
        padding: 0.5em 1em 0.5em 1em;
    }

    th {
        font-weight: 400;
        padding: 0.5em 1em 0.5em 1em;
        text-align: left;
    }

    thead {
        background: _palette(fg);
        color: #fff;
    }

    tfoot {
    }

    tbody {
    }
}

}