@table-prefix: ~"@{css-prefix}table";

.@{table-prefix} {
    & {
        background-color: white;

        >table {
            border    : @border;
            margin    : 0;
            width     : 100%;
            text-align: center;

            th,
            td {
                border: @border;
            }

            td {
                padding: .pr(5)[@res];
            }

            th {
                background-color: #f7f7f7;
                white-space     : nowrap;
                padding         : .pr(5)[@res];
            }
        }

    }
}