/* Button Container */
.navigation-buttons {
    display: flex; /* Flexbox for alignment */
    justify-content: space-between; /* Space out buttons */
    margin-top: 20px; /* Add spacing above the buttons */
    width: 100%; /* Make the container follow the form's width */
    max-width: 650px; /* Optional: Match the form's max width */
    margin-left: auto; /* Center the navigation buttons */
    margin-right: auto;
}

/* Buttons Styling */
.nav-button {
    padding: 10px 20px; /* Add padding for size */
    font-size: 16px; /* Standard font size */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    color: #fff; /* White text color */
    background-color: #007bff; /* Primary button color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 120px; /* Optional: Ensure a consistent width for buttons */
    text-align: center;
}

/* Buttons Hover Effect */
.nav-button:hover {
    background-color: #0056b3; /* Darker shade of blue */
}
