.data-table{
    .ReactVirtualized__Grid{
        outline: none;
    }

    .headerRow,
    .evenRow,
    .oddRow {
        border-bottom: 1px solid #e0e0e0;
        outline: none;
    }

    .headerColumn {
        &.ReactVirtualized__Table__headerColumn {
            display: flex;
            flex-direction: row;
            justify-content: center;
            padding: 0;
            outline: none;
            .ReactVirtualized__Table__headerTruncatedText{
                flex: auto;
            }
            .DragHandle {
                flex: 0 0 16px;
                z-index: 2;
                cursor: col-resize;
                :hover{
                    background-color: rgba(0, 0, 0, 0.1);
                }
                &.DragHandleActive{
                    :hover{
                        z-index: 3;

                    }
                }
                &.DragHandleIcon {
                    flex: 0 0 12px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
    }

    .noRows {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1em;
        color: #bdbdbd;
    }
}
