/* Minimal custom styling for McPherson Lab website */

/* Header banner styling: white, light gray, and light blue */
.header-banner {
  background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #e3f2fd 100%);
  color: #003366; /* dark blue for contrast */
  padding: 2rem 0;
  border-bottom: 1px solid #e3f2fd;
}

/* .content {            */
/*   margin-top: 1rem;   */
/*   max-width: 1200px;  */  /* increase as needed, default is often 800px or 960px */
/*   width: 85%;         */  /* or 100%, or a fixed px value */
/*   margin-left: auto;  */
/*   margin-right: auto; */
/* }                     */

.quarto-title-block {
  display: none;
}
.listing-box-title {
  font-size: 12px; 
  font: bold;
}
.listing-box-subtitle {
  font-size: 11px; 
}
.listing-box-education {
  font-size: 10px; 
  font: italic;
}
/* Example: If using a navbar as header banner */
.navbar {
  background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #003366 100%);
  color: #003366;
  border-bottom: 1px solid #e3f2fd;
}

/* Make navbar-brand text visible on light background */
.navbar-brand {
  font-weight: bold;
  color: #003366 !important;
}
/* Make navbar right side icons (white) visible on mobile devices */
@media (max-width: 768px) {
  .navbar .nav-link,
  .navbar .navbar-brand,
  .navbar .navbar-toggler-icon,
  .navbar .bi {
    color: #003366 !important;
  }
}
/* Left-side nav links (dark navy) */
.navbar-nav.me-auto .nav-link {
  color: #003366 !important;  /* midnight blue */
}

/* Right-side nav links (white) */
.navbar-nav.ms-auto .nav-link {
  color: #ffffff !important;  /* white */
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Ensure good spacing for content */
.content {
  margin-top: 1rem;
}

/* Style for publication lists */
ol li {
  margin-bottom: 0.5rem;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Footer styling */
.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
  color: #6c757d;
  font-size: 0.9rem;
}

/* Page navigation styling */
.page-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid #dee2e6;
}
