@media screen and (min-width: 0) {  
    .nuTable-mobile {
        .btn-group {
            .btn {
                padding: 12px;
                font-size: 20px;
                height: 48px;
                width: 48px;
                line-height: 1;
                aspect-ratio: 1/1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .mdi,
            .btn .mdi::before {
                font-size: 19px;
            }
        }

        .content.actions {
            display: flex;
            align-items: center;
            min-height: 68px;
            padding-right: 16px;
            
            .btn-group {
                display: flex;
                align-items: center;
            }
        }
    }
}

@media (max-width: 767px) {
    .nuTable-mobile {
        .content.actions {
            padding: 10px 16px 10px 0;
        }
    }
}


