.navbar {
    position: fixed; /* Fix the navbar at the top */
    top: 0;          /* Align it to the top of the page */
    width: 100%;     /* Make it span the full width */
    z-index: 1030;   /* Ensure it stays above other content */
}
body {
    padding-top: 70px; /* Add padding to prevent content from overlapping the navbar */
}