JIT
design a responsive card layout for navigation links
add a good design for the content of this card and make it highly responsive <div class="card"> <div class="card-header"> <h3>NAVIGATIONS</h3> </div> <div class="card-content"> <a class="" href="{{ url_for('blockchain_html') }}"> <i class="fa-solid fa-shield-halved"></i> <span>Vote Audit Trail</span> </a> <a href="{{ url_for('voting_admin') }}"> <button type="button">Go to Voting Period Settings</button> </a> <!-- Inside voting_admin.html --> <a href="{{ url_for('system_admin') }}"> <button type="button">Go to Filing Period Settings</button> </a> <a href="{{ url_for('logout') }}" onclick="return confirm('Are you sure you want to logout?');">Logout</a> </div> </div>

Here's a responsive card design with improved styling and layout:

Updated files
v1