		/* Pagination Container */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            list-style: none;
            padding: 0;
            font-family: 'Poppins', sans-serif; /* Match your website font */
        }
        
        /* Pagination Items */
        .pagination li {
            margin: 0 5px; /* Space between pagination buttons */
        }
        
        /* Pagination Links */
        .pagination li a,
        .pagination li span {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px; /* Fixed width for uniformity */
            height: 40px; /* Fixed height for uniformity */
            font-size: 16px; /* Adjust font size */
            color: #f6931e; /* Primary color */
            border: 2px solid #f6931e; /* Border matching theme */
            border-radius: 50%; /* Circular buttons */
            background-color: #ffffff; /* White background */
            text-decoration: none;
            transition: all 0.3s ease; /* Smooth hover effect */
        }
        
        /* Hover Effect */
        .pagination li a:hover {
            color: #ffffff; /* White text on hover */
            background-color: #f6931e; /* Background matching theme */
            border-color: #f6931e; /* Solid border on hover */
            text-decoration: none;
        }
        
        .page-item.active .page-link {
            z-index: 1;
            color: #fff;
            background-color:#f6931e;
            border-color:#f6931e;
        }
        
        /* Disabled Buttons */
        .pagination li.disabled span,
        .pagination li.disabled a {
            color: #cccccc; /* Grey text for disabled buttons */
            background-color: #f5f5f5; /* Light grey background */
            border-color: #cccccc; /* Grey border */
            cursor: not-allowed; /* Disabled cursor */
        }