.ttk-edf-app-edittable{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    &-header{
	    height: 50px;
        flex: 0 0 50px;
        padding: 10px 25px;
        flex-direction: row;
        justify-content: flex-end;
        align-items: right;
        overflow: hidden;
        text-align: right;
    }

    &-cell{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        & > div {
            width: 100%;
            height: 100%;
            input{
                height: 100%;
            }
        }

        .ant-select-selection{
            height: 100%
        }

        .ant-select-selection__rendered{
            height: 100%
        }

        .ant-select-selection-selected-value{
            line-height: 40px;
        }
            
    }
}