.dataTables_length{
    float: inline-end;
    cursor: pointer;
}

.dataTables_info{
    float: inline-start;
}

.dataTables_paginate{
    float: inline-end;
    cursor: pointer;
}

.paginate_button{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.paginate_button .current{
    color: rgb(240, 182, 103);
}

.fas{
    cursor:pointer !important;
    cursor: hand !important;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
