/* Post Parts Pagination Styling */
#pagination_wrap {
    margin: 20px 0;
    text-align: center;
    width: 100%; /* Full page width */
}
.post-page-numbers {
    text-decoration: none;
    display: block; /* Makes the link take full width */
}
.pagination_btn {
    display: block; /* Full width button */
    width: 100%; /* Button spans entire container */
    padding: 12px 20px;
    background-color: #006400; /* Dark green */
    color: #ffffff; /* White text */
    border-radius: 5px;
    font-size: 20px; /* Medium font */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Capital letters */
    transition: background-color 0.3s;
}
.pagination_btn:hover {
    background-color: #008000; /* Slightly lighter dark green on hover */
}
.continue {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-style: italic; /* Italic text */
}