/* 
 * Sticky Navbar Styles
 * Makes the masthead (navbar) sticky while preserving its appearance
 */

#masthead {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000; /* Match the body background color */
    width: 968px; /* Match the wrapper width */
    margin: 0 auto;
    padding-top: 10px; /* Add some padding for better appearance */
}

/* Ensure proper spacing after the sticky header */
#content-wrapper {
    padding-top: 10px;
}
