/* extra.css */

/* .navbar-brand.me-2 {
    color: #000000 !important;
}
.container {
    color: #000000 !important;
}

.navbar.navbar-expand-lg.fixed-top.headroom.headroom--top.headroom--not-bottom.he {
    background-color: #ffffff;
}

.navbar-default .navbar-nav > li > a {
  color: #000000 !important;
} */

.navbar {
 box-shadow: none !important;
 padding-top: 0rem;
 padding-bottom: 0rem;
 
}


.nav-link:hover, .nav-link:focus {
    color: #fff;
    background-color: black !important;
}

/* change color of links outside of navbar */
a:not(nav a){
    color: #999 !important;
}

/* increase size of logo */
img.logo {
    width: 200px !important;
    
}

#toc .nav-link:hover,
#toc .nav-link:focus {
    color: #fff !important;
}

/* Dark theme colors only */
[data-bs-theme="dark"] {
    --bs-body-bg: #2e3338 !important;
    --bs-body-color: #b8bcc8 !important;
}

[data-bs-theme="dark"] .navbar {
    background-color: #2e3338 !important;
}

[data-bs-theme="dark"] .nav-link {
    color: #b8bcc8 !important;
}

[data-bs-theme="dark"] .nav-link:hover,
[data-bs-theme="dark"] .nav-link:focus {
    color: #ffffff !important;
    background-color: #404752 !important;
}

[data-bs-theme="dark"] a:not(nav a) {
    color: #9ca3af !important;
}

[data-bs-theme="dark"] a:not(nav a):hover {
    color: #ffffff !important;
}

[data-bs-theme="dark"] #toc .nav-link:hover,
[data-bs-theme="dark"] #toc .nav-link:focus {
    color: #ffffff !important;
    background-color: #404752 !important;
}

[data-bs-theme="dark"] .navbar-brand {
    color: #b8bcc8 !important;
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: #9ca3af !important;
}

[data-bs-theme="dark"] .form-control {
    color: #b8bcc8 !important;
    background-color: #404752 !important;
    border-color: #555 !important;
}

/* Reduce spacing for paragraphs inside list items within the "Details" section */
.section.level2:has(h2#details) ul li p {
    margin-bottom: 0.25em;
    line-height: 1.4;
}