/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Child theme for GeneratePress
 Author:       Akshay Agarwal
 Author URI:   https://example.com
 Template:     generatepress
 Version:      1.0.0
*/

/* Modern Rounded Pagination */
.navigation.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.navigation.pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navigation.pagination .page-numbers:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.navigation.pagination .page-numbers.current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.navigation.pagination .prev::before {
    content: "← ";
}
.navigation.pagination .next::after {
    content: " →";
}
