/*----------
 início - template padrão para pagina resultados de buscas - search.php
 ----------*/
 .navigation {
    display: flex;
    background-color: #f8f8f8;
    text-align: center;
    align-items: center;
    padding: 5px;
    width:100%;
    display: flex;
    justify-content: center;
  }
  
  .navigation .nav-links{
  
  }
  
  .navigation .nav-links .page-numbers{
    border-radius: 50%;
    background-color: #ffffff00;
    color: #000000;
    border: none;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .navigation .nav-links .page-numbers.current{
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .navigation .nav-links .next .page-numbers{
    
  }
  
  /* Change link styles */
  .pagination a {
    /*
    color: #000; 
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px; */
  }
  
  /* Style the current page link differently */
  .pagination .current {
    font-weight: bold;
    background-color: #333; /* Your desired background color for the current page */
    color: #fff; /* Your desired text color for the current page */
    align-items: center;
    justify-content: center;
  }
  
  /* Style the navigation arrows if your pagination includes them */
  .pagination .next,
  .pagination .prev {
    font-size: 17px; 
    display: inline-flex; 
    text-indent: -999em;
    align-items: center;
    justify-content: center;
  }
  
  .pagination .next:after{
    font-family: "FontAwesome"; 
    display: flex; 
    content: "\f054";
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }
  
  .pagination .prev:after {
    font-family: "FontAwesome"; 
    display: flex; 
    content: "\f053";
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }
  /*----------
  fim - template padrão para pagina resultados de buscas - search.php
  ----------*/