/* Offset anchor scroll position */
h2[id] {
  scroll-margin-top: 120px;
}

body{
  background-color: #36454F;
  color: white;
  font-size: 22px;
  padding-top: 110px;
}

a:link {
    color: #d1e1fc;
}
a:visited {
    color: #d1e1fc;
}
a:hover {
    color: #d1e1fc;
}
a:active {
    color: #d1e1fc;
}

table, th, td {
  font-size: 22px;
  color: white;
}

li {
  font-size: 22px;
}

ol.list-group {
  margin-left: 30px;
  font-size: 22px;
  width: 100%;
}

ul.list-group {
  margin-left: 30px;
  font-size: 22px;
  width: 100%;
}

li.list-group-item {
  color: black;
  background-color: #36454F;
}

pre{
    background-color: black;
    margin: 0px;
    border-radius: 4px;
    color: white;
    font-size: 20px;
    padding: 15px;
    border: 1px;
    border-color: white;
    border-style: solid;
}

div.jumbotron{
    background-color: black;
}

td {
  background-color: #36454F;
}

th {
  background-color: #36454F;
}

/* --- Shared fixed top navigation --- */
.dbp-topnav {
  border-radius: 0;
  border-bottom: 2px solid #000;
  margin-bottom: 0;
}

.dbp-topnav .navbar-nav > li > a {
  font-size: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.dbp-topnav .navbar-brand {
  font-size: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* Prevent global <li> styles from pushing nav items around */
.dbp-topnav li {
  margin-bottom: 0;
}

.dbp-topnav.navbar-default {
  background-image: none;
}

/* --- Session subnav row (inside fixed navbar, centered, wider spacing) --- */
.dbp-subnav {
  clear: both;
  border-top: 0px solid #000;
  padding: 0 0 4px 0;
}

.dbp-subnav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.dbp-subnav-link {
  padding: 0 14px;
  text-decoration: none;
}

.dbp-subnav-link:hover {
  text-decoration: underline;
}

/* Tighten subnav row link padding without changing font/color */
.dbp-subnav .navbar-nav > li > a {
  padding-top: 4px;
  padding-bottom: 12px;
}

/* Make navbar use page background */
.navbar-default {
  background-color: inherit;
  background-image: none;
  border-color: transparent;
}

/* Fixed-header anchor offset (works even when scroll-margin-top doesn't) */
:target::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -140px;
}