:root {
    --bs-primary: #054A91;       /* Steel Azure buttons, links, etc. */
    --bs-secondary: #81A4CD;     /* Wisteria Blue secondary elements */
    --bs-body-color: #050505;    /* Black default text color */
    --bs-tertiary: #DBE4EE;       /* Alice Blue default background */
    /* --bs-body-bg: #FFF6EA;
    --bs-body-bg-rgb: 255, 246, 234; */

}

.banner-bg {
    background-color: #81A4CD;
}

figure.code-block figcaption {
    background-color: #2b2b2b;
    color: #ffcc00;
    font-family: monospace;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.navbar-brand {
    font-family: 'Arial Nova', sans-serif;
    font-size: 2.0rem;
    color: #054A91;
    font-weight: bold;
}
.navbar-brand:hover {
    color: #054A91 !important;
}

.text-secondary {
    color: #054A91 !important;
}

.text-tertiary {
    color: #DBE4EE !important;
}   

.active {
    color: #81A4CD !important;
    font-weight: bold;
}

.headline-bg {
    background-color: #81A4CD;
    background-image: url('https://webassets.hbnet.tech/img/tne/background.jpg');
}

a:hover {
    color: #81A4CD !important;
}

pre {
    background-color: #1e1e1e;     
    color: #f5f5f5;                 
    padding: 0;                   
    border-radius: 0.5rem;           
    overflow-x: auto;                
    font-family: 'Fira Code', monospace; 
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    
}

pre code {
    background: none;                
    color: inherit;                  
    font-family: inherit;
}

code {
    background-color: #f0f0f0;
    color: #c7254e;
    /* padding: 0.2rem 0.4rem; */
    border-radius: 0.25rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}


.code-bg {
    background-color: lightgray;
}





blockquote {
  border-left:1px solid #e5e5e5;
  margin:0;
  padding:0 0 0 20px;
  font-style:italic;
}

code, pre {
  font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
  color:#333;
}

pre {
  padding:8px 15px;
  background: #f8f8f8;
  border-radius:5px;
  border:1px solid #e5e5e5;
  overflow-x: auto;
}