  /* Datatables sort icons */
  table.dataTable thead .sorting::before,
  table.dataTable thead .sorting_asc::before,
  table.dataTable thead .sorting_desc::before,
  table.dataTable thead .sorting_asc_disabled::before,
  table.dataTable thead .sorting_desc_disabled::before {
      right: 0.5em;
      /* Up arrow */
      content: "\25B2";
      bottom: 17px;
      font-size: 12px;
  }
  
  table.dataTable thead .sorting::after,
  table.dataTable thead .sorting_asc::after,
  table.dataTable thead .sorting_desc::after,
  table.dataTable thead .sorting_asc_disabled::after,
  table.dataTable thead .sorting_desc_disabled::after {
      /* Down arrow */
      content: "\25BC";
      bottom: 4px;
      font-size: 12px;
  }
  
  /* Active sort icon */
  table.dataTable thead .sorting_asc::before,
  table.dataTable thead .sorting_desc::after {
      color: #343a40;
  }

  .page-item.active .page-link {
      background-color: lightgrey !important;
      border: 1px solid black;
  }
  .page-link {
      color: black !important;
  }
