:host ::ng-deep {
  .datatable-body-cell-label {
    position: relative;

    > span {
      touch-action: auto !important;
      user-select: auto !important;
      -webkit-user-drag: auto !important;
    }
    .mat-icon.column-icon {
      position: absolute;
      top: 0;
    }
  }
}
.column-margin-left {
  margin-left: 2rem;
}

//Add this to your css/scss File
::ng-deep {
  .cdk-overlay-container,
  .cdk-global-overlay-wrapper {
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .cdk-overlay-container {
    position: fixed;
    z-index: 1000;
  }

  .cdk-overlay-pane {
    position: absolute;
    pointer-events: auto;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    max-width: 100%;
    max-height: 100%;
  }
}

.with-icon {
  display: flex;
  align-items: center;
}
