.custom-pagination-style {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-pagination-style .pagination {
    list-style: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
  }
  
  .custom-pagination-style .pagination li {
    margin-right: 5px;
  }
  
  .custom-pagination-style .pagination li a {
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #999;
    color: #333;
    background-color: #fff;
    transition: background-color 0.3s ease;
  }
  
  .custom-pagination-style .pagination li a:hover {
    background-color: #f2f2f2;
  }
  
  .custom-pagination-style .pagination .active a {
    background-color: #007bff;
    color: #fff;
  }