 .pagination-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     font-size: 14px;
     margin-top: 10px;
 }

 .entries-count {
     color: #444;
     margin-bottom: 6px;
 }

 .pagination {
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
 }

 .pagination a {
     padding: 4px 10px;
     text-decoration: none;
     background-color: #f5f5f5;
     border: 1px solid #ccc;
     color: #333;
     border-radius: 4px;
     font-size: 13px;
     transition: background 0.2s;
 }

 .pagination a:hover {
     background-color: #e2e6ea;
 }

 .pagination a.active {
     background-color: #5d1769;
     color: white;
     font-weight: bold;
     border-color: #5d1769;
 }