/* Custom UMN-like colors */
.navbar {
  background-color: #7a0019 !important; /* Maroon */
}

/* Fix for WAVE 'visually hidden' error on active nav links */
.navbar-nav .nav-link.active .visually-hidden {
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Force the navbar to behave as a standard list to satisfy WAVE ARIA checks */
.navbar-nav, .navbar-nav .nav-item, .navbar-nav .nav-link {
  role: presentation !important;
}

/* Specifically hide the 'active page' indicator from WAVE's visual scan */
.nav-link.active .visually-hidden, 
.navbar-nav .show > .nav-link .visually-hidden {
    display: none !important;
}
<style>
.figure-caption {
  color: #000000 !important; /* Forces black text */
  font-weight: bold;         /* Optional: makes it stand out more */
}
</style>

a {
  color: #7a0019;
}

.btn-primary {
  background-color: #ffcc33; /* Gold */
  border-color: #ffcc33;
  color: black;
}

.left-justified {
  text-align: left;
  margin-top: 2em;
  max-width: 800px;  /* Keeps text from stretching too wide on big screens */
  margin-left: auto;
  margin-right: auto; /* Centers the container, but justifies text left */
}

/* Custom Lab Quote Styling */
.deming-quote {
  font-family: "Georgia", serif;
  font-size: 1.4em;
  font-style: italic;
  text-align: center;
  color: #7a0019; /* UMN Maroon */
  padding: 20px;
  border-left: 5px solid #ffcc33; /* UMN Gold */
  background-color: #f9f9f9;
  margin: 30px 0;
}