/* Custom Pagination Styles */
.custom-pagination {
    margin: 20px 0;
}

.custom-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.custom-pagination li {
    margin: 0 5px;
}

.custom-pagination a {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.custom-pagination a:hover {
    background-color: #ddd;
}

.custom-pagination .active a {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
