/*─────────────────────────────────────────────────────────────────────────
  1. Full-screen MRI background (body) and top padding to offset the fixed header
──────────────────────────────────────────────────────────────────────────*/
body {
    margin: 0;
    padding: 0;
    background: url("/static/background_orig.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Offset content so it isn't hidden behind the 48px-tall banner */
    padding-top: 48px;
  }
  
  /*─────────────────────────────────────────────────────────────────────────
    2. Sticky Top Banner
  ──────────────────────────────────────────────────────────────────────────*/
  .top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f8f9fa;            /* light gray/white */
    border-bottom: 1px solid #ddd;
    padding: 0.25rem 1rem;          /* slim vertical padding (0.25rem) */
  }
  
  /* Container inside banner: flex layout */
  .banner-content {
    display: flex;
    align-items: center;
  }
  
  /* Logo in banner: slightly smaller */
  .top-banner .logo img {
    height: 32px;                   /* was 40px */
  }
  
  /*─────────────────────────────────────────────────────────────────────────
    3. Navigation List (horizontal by default)
  ──────────────────────────────────────────────────────────────────────────*/
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;                  /* horizontal alignment */
    align-items: center;
  }
  
  /* Add spacing between nav items */
  .nav-list li {
    margin-left: 1.5rem;
  }
  
  /* No left margin for the first item */
  .nav-list li:first-child {
    margin-left: 1.5rem;
  }
  
  /* Link styling */
  .nav-list a {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 0.25rem 0;             /* vertical padding for a larger click area */
  }
  
  .nav-list a:hover {
    color: #000;
    text-decoration: underline;
  }
  
  /*─────────────────────────────────────────────────────────────────────────
    4. Main Content Cards
  ──────────────────────────────────────────────────────────────────────────*/
  #pageContent {
    flex: 1;
    padding: 2rem;
  }
  
  /* White cards with subtle shadow */
  #pageContent .card {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
  }
  
  /* On the landing page, remove white card background so the jumbotron shows fully */
  body.landing-page #pageContent .card {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  /*─────────────────────────────────────────────────────────────────────────
    5. Jumbotron (Landing Hero)
  ──────────────────────────────────────────────────────────────────────────*/
  .jumbotron {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-radius: 0.25rem;
    padding: 3rem 2rem;
  }
  
  /*─────────────────────────────────────────────────────────────────────────
    6. Footer
  ──────────────────────────────────────────────────────────────────────────*/
  footer {
    background-color: #ffffff;
  }
  