/* Ensures the parent container takes up the full page width */
.next-page-link {
    display: block;
    width: 100%; /* Ensures it takes up the full width of the page */
    text-align: center; /* Centers the button horizontally within the page */
    margin: 20px 0; /* Optional: Adds some space above and below the button */
}

/* Button Image Styling */
.next-page-icon {
    width: 270px; /* Adjust the width as needed for the actual image size */
    height: auto; 
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.next-page-icon:hover {
    transform: scale(1.1); /* Slight enlargement on hover */
}
