/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 02 2024 | 11:47:04 */
/* Style the Divi Post Navigation next button */
.et_pb_posts_nav .nav-next a {
    color: #fff;
    background: transparent;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

/* Style the Divi Post Navigation next button on hover */
.et_pb_posts_nav .nav-next a:hover {
    color: #fff;
    background-color: #14279b; /* You can add a background change if necessary */
    transition: all 0.3s ease-in-out;
}

/* Style the Divi Post Navigation previous button */
.et_pb_posts_nav .nav-previous a {
    color: #fff; /* Default color */
    background: transparent;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

/* Style the Divi Post Navigation previous button on hover */
.et_pb_posts_nav .nav-previous a:hover {
    color: #14279b; /* Change to blue on hover */
    transition: all 0.3s ease-in-out;
}