.nk-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nk-pagination a {
  display: inline-flex;
  align-items: center;
}
.nk-pagination i,
.nk-pagination .nav-links {
  margin: -3px 6px;
}
.nk-pagination-center { justify-content: center; }

.spinner-icon { 
  display: inline-block; 
  animation: spin 1s linear infinite; 
} 

@keyframes spin { 
  0% { 
    transform: rotate(0deg); 
  } 100% { 
    transform: rotate(360deg); 
  } 
}