/* Pagination links */
.paging a {
    color: white;
    float: inline;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  /* Style the active/current link */
  .paging a.active {
    background-color: rgb(255, 30, 30);
    color: rgb(7, 7, 7);
  }
  
  /* Add a grey background color on mouse-over */
  .paging a:hover:not(.active) {background-color: rgb(122, 122, 122);}