/* Background color for the entire site */
body {
    background-color: #f0f8ff;  /* Pale blue */
}

/* Make content area match background */
.content-container, 
.content,
main {
    background-color: #f0f8ff !important;  /* Same pale blue */
}

/* Style the navigation bar background */
.navbar {
    background-color: #1a1c3d !important;  /* Navy blue */
}

/* Style the table of contents sidebar */
.sidebar nav[role=doc-toc] ul li a {
    color: black !important;
}

/* Style when hovering over TOC links */
.sidebar nav[role=doc-toc] ul li a:hover {
    color: #2c3e50 !important;
}

/* Style the navigation text */
.navbar-brand, 
.nav-link {
    color: #f0f8ff !important;  /* Same pale blue as background */
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1em;
}

/* Style navigation links on hover */
.nav-link:hover {
    color: #ffffff !important;  /* White on hover */
}

/* Change font for all content */
* {
    font-family: 'Times New Roman', Times, serif;
}