﻿/*------------------- 4.6 Pagination -------------------*/
.pagination-layout1 
{
    margin: 0 0 50px 0;
  
  text-align: center;
}
.pagination-layout1 ul li 
{
    padding: 0;
  display: inline-block;
  margin-right: 4px;
}
.pagination-layout1 ul li:last-child {
  margin-right: 0;
}
.pagination-layout1 ul li a {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 7px 18px;
  font-size: 20px;
  color: #2f3985;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.pagination-layout1 ul li a:hover {
  border-color: #2f3985;
  background-color: #2f3985;
  color: #ffffff;
}
.pagination-layout1 ul li a.active {
  border-color: #2f3985;
  background-color: #2f3985;
  color: #ffffff;
}

#PagerNumber li.ActiveNumber a {
    background-color: #007bff; /* رنگ پس‌زمینه */
    color: white; /* رنگ متن */
    font-weight: bold; /* ضخیم کردن فونت */
    border-radius: 0px; /* گوشه‌های گرد */
    padding: 5px 10px; /* فضای داخلی */
    text-decoration: none; /* حذف زیرخط */
}#PagerNumber li.ActiveNumber a:hover {
    background-color: #0056b3; /* رنگ پس‌زمینه در حالت Hover */
    color: white;
}