/* 
  This file is intentionally left mostly empty.

  The website's styling is now primarily controlled by the Bootstrap 5 framework,
  which is included via a CDN link in index.html.

  Dynamic colors (primary, background, text) are set using CSS variables
  in the <head> of the document by script.js, based on the values in config.json.
  This allows for real-time color scheme updates from the admin panel.

  You can add custom CSS overrides here if needed, but for most layout and 
  component styling, you should use Bootstrap classes in the HTML.
*/

/* Add this to make the navbar sticky */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    width: 100%;
}