/* Wrapper styling */
.custom-post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin: 20px 0;
}

/* Styling for Previous link */
.previous-post-link {
    text-decoration: none;
    color: #333;
    font-weight: normal; /* Set font weight to normal */
    font-size: 14px; /* Set font size to 14px */
    order: 1; /* Keep Previous link on the left side */
}

.previous-post-link .arrow {
    margin-right: 8px;
}

/* Styling for Next link */
.next-post-link {
    text-decoration: none;
    color: #333;
    font-weight: normal; /* Set font weight to normal */
    font-size: 14px; /* Set font size to 14px */
    margin-left: auto; /* Ensures Next link stays on the far right side */
    order: 2; /* Keep Next link on the right side */
}

.next-post-link .arrow {
    margin-left: 8px;
}

/* Adjust link hover styling */
.previous-post-link:hover, 
.next-post-link:hover {
    color: #f55a17; /* Set hover color to #f55a17 */
}

.previous-post-link:hover .arrow,
.next-post-link:hover .arrow {
    color: #f55a17; /* Set arrow hover color to #f55a17 */
}
