/* .ngx-datatable {
  &.bootstrap {
    .datatable-header {
      .datatable-header-cell {
        border-bottom-color: lightgray;
      }
    }
    .datatable-body {
      .datatable-body-row {
        border-top-color: lightgray;
        &.datatable-row-even {
          background-color: white;
        }
        .datatable-body-cell {
          text-align: left;
        }
      }
    }
    .datatable-footer {
      background: white;
      color: black;
      .datatable-pager {
        text-align: right;
        ul {
          li {
            &:not(.disabled) {
              a {
                color: black;
              }
              &.active,
              &:hover {
                a {
                  background-color: black;
                  color: white;
                }
              }
            }
          }
        }
      }
    }
  }
} */