/* 그리드 헤더 중앙 정렬*/
.dx-header-row {
    td {
        text-align: center !important;
    }
}

/* 그리드 데이터 정렬 */
.dx-data-row {
    .alignLeft {
        text-align: left !important;

        input {
            text-align: left !important;
        }
    }

    .alignCenter {
        text-align: center !important;

        input {
            text-align: center !important;
        }
    }

    .alignRight {
        text-align: right !important;

        input {
            text-align: right !important;
        }
    }
}