table.ly-table{

    color: var(--grey-scale-primary);

}

table.ly-table th{

    font-size: 16px;
    font-weight: 700;

    border-bottom: 3px solid var(--grey-scale-medium);
    cursor: default;

}

table.ly-table td{

    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid var(--grey-scale-medium);
    padding: 8px;
    cursor: default;
}

table.ly-table td:first-child{
    padding-left: 8px;
}
table.ly-table td:last-child{
    padding-right: 8px;
}

table.ly-table.yl-table-widget td{
    font-size: 32px;
    padding: 10px;
}
table.ly-table tr:hover td {
     background-color: var(--grey-scale-light);
}