ul[data-table] {
    display: grid;
    list-style-type: none;
    padding: 0;
    margin: 0;

    li {
        display: grid;
        margin: 0;
        grid-template-columns: 6rem 7rem 7rem 5rem 7rem 6rem 6rem 6rem 7rem;
        justify-content: start;

        /* &:last-child {
            border-bottom: none;
        } */

        span {
            border-block-end: 1px solid currentColor;
            border-inline-end: 1px solid currentColor;
            padding: 1rem;
            /* display: block;
            width: 100%; */
            &:first-child {
                font-weight: bold;
            }
        }
    }
}