#statistics-content-table {
    font-size: var(--jl-font-xs);
    margin-top: var(--jl-padding-s);
    margin-left: var(--jl-padding-m);
    border-collapse: collapse;
    width: 810px;
    max-width: 810px;
    min-width: 810px;

    & thead {
        background-color: var(--jl-table-thead-bg);
        height: 30px;
    }

    & thead tr th {
        background-color: var(--jl-table-thead-bg);
        color: rgb(255, 149, 14, 0.8);
    }   

    & td {
        color: var(--jl-table-text)
    }

    & tbody {
        background-color: var(--jl-bg);
        & tr {
            background-color: var(--jl-table-row-bg);
        }
    }

    & tbody>tr:nth-of-type(odd) {
        box-shadow: var(--jl-table-box-shadow2);
    }

    & tbody>tr:nth-of-type(even) {
        box-shadow: var(--jl-table-box-shadow2);
    }

    & tbody>tr:hover {
        box-shadow: var(--jl-table-box-shadow3);
    }

    & td,
    & th {
        text-align: right;
        padding: var(--jl-table-cell-padding) !important;
        border: 0px !important;
        border-bottom: 1px solid var(--jl-table-row-border);
        font-weight: bold;
        line-height: 130%;
        width: 100px;
        max-width: 100px;
        min-width: 100px;
    }

    & th.first-col {
        width: 110px !important;
        max-width: 110px;
        min-width: 110px;
        
    }


    & td:first {
        text-align: left;
        width: 110px !important;
        max-width: 110px;
        min-width: 110px;
        
    }

    & td.growth {
        font-style: italic;
        color: var(--jl-text-placeholder) !important;
        font-size: var(--jl-font-xxs);
        font-weight: normal;
        
    }

    & tr.extra-margin {
        margin-bottom: 20px;
        border-bottom: 1px solid var(--jl-table-thead-bg);

    }

    & th.estimate {
        color: rgb(114, 159, 207, 0.8) !important;
    }
    & td span.negative {
        color: var(--jl-negative);
    }
    /* & tbody tr :nth-child(10),
    & tbody tr :nth-child(9), 
    & thead tr :nth-child(8){
        border-left: 1px solid var(--jl-table-thead-bg) !important;
    } */
}