/* Keep invisible scrollbar to stabilize the page layout */
html {
    scrollbar-gutter: stable
}

/*Custom CSS to float the navbar*/
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays on top */
    box-shadow: 0 4px 6px rgba(133, 133, 133, 0.25);
    background-color: var(--pico-background-color);
    color: var(--pico-color);
}