@charset "UTF-8";
/* default.css - Call for this stylesheet in the HTML after the call for the default Bootstrap CSS file: bootstrap-5.3.8.css */


/* Modified 2025-11-11 to change the primary font to Noto Sans. */
/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Modified 2025-10-15 to change the navigation background to black. */

.bg-black {
	background-color: #000 !important;
}

a.bg-black:hover, a.bg-black:focus, button.bg-black:hover, button.bg-black:focus {
	background-color: #1d2124 !important;
}

/* Modified 2025-10-15 to add a smaller italicized subheading within the dropdown navigation. */

.dropdown-heading {
	font-size: 70%;
	font-style: italic;
	padding-bottom: 0.3rem;
	padding-left: 0.75rem;
}

/* Modified 2025-10-16 to change the search button to amber gold. */

.btn-outline-success {
	--bs-btn-color: #ffc107;
	--bs-btn-border-color: #ffc107;
	--bs-btn-hover-color: #68510f;
	--bs-btn-hover-bg: #ffc107;
	--bs-btn-hover-border-color: #ffc107;
	--bs-btn-focus-shadow-rgb: 25, 135, 84;
	--bs-btn-active-color: #68510f;
	--bs-btn-active-bg: #ffc107;
	--bs-btn-active-border-color: #ffc107;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #ffc107;
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: #ffc107;
	--bs-gradient: none;
}

/* Modified 2025-10-16 to change the page background  (--bs-body-bg) to a warm grayish-amber derived from the Starship patina recommended by Grok. */

:root[data-bs-theme="dark"] {
	--bs-body-bg: #2c261f;
	--bs-primary: #ffc107;
	--bs-body-color: #e8f0fe;
}

/* Modified 2025-10-17 to set the Site Name text styling in the footer. */

.footer-site-name {
	letter-spacing: 0.6rem;
	text-transform: uppercase;
}

/* Modified 2025-12-01 to set the Site Sub Name text styling in the footer. */

.footer-site-subname {
	font-size: 80%;
	letter-spacing: 0.2rem;
	font-style: italic;
}


/* Modified 2025-10-17 to reduce the size of the Copyright text in the footer. */

.copyright {
	font-size: 0.9rem;
}

/* Modified 2025-10-17 to toggle on hyperlink underlines in the footer navigation links. */

.nav-link-footer {
	--bs-link-color: #e8f0fe;
	--bs-link-color-rgb: 13, 110, 253;
	--bs-link-decoration: underline;
	--bs-link-hover-color: #fff;
	--bs-link-hover-color-rgb: 255, 255, 255;
	--bs-link-hover-decoration: underline;
  }
  
/* 2025-10-22 - Added the "lead-in" class. */
  
.lead-in {
	color: #ffc107;
	font-weight: 500;
  }
  
/* 2025-10-22 - Added the "dtl-group" class. */
  
.dtl-group {
	color: #b0c4de;
	font-family: monospace;
	font-size: 0.8rem;
  }
  
/* 2025-10-22 - Added the "intro" class. */
  
.intro {
	font-size: 1.25rem;
  }
  
/* 2025-10-23 - Added a background image to the "navbar" class. */

.navbar {
	--bs-navbar-padding-x: 0;
	--bs-navbar-padding-y: 0.5rem;
	--bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
	--bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
	--bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
	--bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--bs-navbar-brand-padding-y: 0.3125rem;
	--bs-navbar-brand-margin-end: 1rem;
	--bs-navbar-brand-font-size: 1.25rem;
	--bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
	--bs-navbar-nav-link-padding-x: 0.5rem;
	--bs-navbar-toggler-padding-y: 0.25rem;
	--bs-navbar-toggler-padding-x: 0.75rem;
	--bs-navbar-toggler-font-size: 1.25rem;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	--bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
	--bs-navbar-toggler-border-radius: var(--bs-border-radius);
	--bs-navbar-toggler-focus-width: 0.25rem;
	--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
/* 2025-11-10 - Added a bottom black border to the navbar class. */
	border-bottom: 3px solid #000;
/* BEGIN background */
	background-image: url('../images/bkg-header_01-WE3ACR.png');
	background-position: left top;
	background-repeat: repeat-y;
/* END background */
}

/* 2025-10-24 - Added the "site_map-list-heading" class. */

.site_map-list-heading {
	color: #e8f0fe;
	font-size: 70%;
	font-style: italic;
	list-style: none;
	padding-top: 0.4rem;
	margin-left: -2.5ch;
}

/* 2025-10-24 - Added the "nav-btn-feature" classes. */

.nav-btn-feature a {
	border: 1px solid rgba(252, 181, 0, 0.4); /* 60% transparent = 0.4 opacity */;
	border-radius: 6px;
	margin: 0.5ch 1ch 0ch 0ch;
	padding: 0.2ch 0.3ch 0.2ch 0.3ch;
	background-color: rgba(252, 181, 0, 0.2); /* #fcb500 = rgb(252,181,0), alpha 0.2 = 20% */
}

.nav-btn-feature a.active {
	border: 1px solid rgba(252, 181, 0, 0.6); /* 80% transparent = 0.6 opacity */;
	border-radius: 6px;
	margin: 0.5ch 1ch 0ch 0ch;
	padding: 0.2ch 0.3ch 0.2ch 0.3ch;
	background-color: rgba(252, 181, 0, 0.4); /* 60% transparent = 0.4 opacity */;
}

/* 2025-10-29 - Added the Bold attribute to h1, h2, h3. */
  
h1 {
	font-weight: 600;
  }

h2 {
	font-weight: 500;
  }

h3 {
	font-weight: 300;
  }
  
/* 2025-11-09 - Added the right main image container. */

.image-container {
	height: 100%; /* Ensure the container takes full height of the column */
	padding-bottom: 2rem;
}


.img-flush-right {
	object-fit: contain; /* Scale image without distortion */
	max-height: 100%; /* Prevent overflow */
}

/* 2025-11-10 - Added the italic style to the Table of Contents h5. */

.toc-h5 {
	font-size: 1.1rem;
	font-style: italic;
	padding-top: 1rem;
}

.hesitation {
	font-style: italic;
	letter-spacing: 0.2rem;
} 

/* 2025-12-24 - Modified the dt for the FAQ page. */

.faq-dt {
	color: #ffc107;
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
}

/* 2025-12-25 - Added the "nav-btn-dl" classes for the Glossary page. */

.OFF-nav-btn-dl a {
	border: 1px solid rgba(252, 181, 0, 0.4); /* 60% transparent = 0.4 opacity */;
	border-radius: 6px;
	margin: 0.5ch 1ch 0ch 0ch;
	padding: 0.2ch 0.3ch 0.2ch 0.3ch;
	background-color: rgba(252, 181, 0, 0.2); /* #fcb500 = rgb(252,181,0), alpha 0.2 = 20% */
}

.OFF-nav-btn-dl a.active {
	border: 1px solid rgba(252, 181, 0, 0.6); /* 80% transparent = 0.6 opacity */;
	border-radius: 6px;
	margin: 0.5ch 1ch 0ch 0ch;
	padding: 0.2ch 0.3ch 0.2ch 0.3ch;
	background-color: rgba(252, 181, 0, 0.4); /* 60% transparent = 0.4 opacity */;
}


/* 2025-12-25 - Grok-generated CSS to style the unordered list with class "nav-btn-dl" */

ul.nav-btn-dl {
	list-style-type: none; /* Removes bullets */
	margin: 0; /* Removes default margin */
	padding: 0; /* Removes default padding (indentation) */
}

ul.nav-btn-dl li {
	display: inline-block; /* Makes list items display inline-block to allow wrapping without overlap */
	margin-right: 1rem; /* Adds spacing between items; adjust as needed */
	margin-bottom: 1rem; /* Adds vertical spacing between rows when wrapped; adjust as needed */
}

/* Optional: Style for links inside the list items, if used as navigation */
ul.nav-btn-dl li a {
	border: 1px solid #ffc107; /* 60% transparent = 0.4 opacity */;
	border-radius: 0.4rem; /* Example rounded corners */
	text-decoration: none; /* Removes underline from links */
	color: #ffc107; /* Example color */
	padding: 0.4rem 0.9rem; /* Example padding for button-like appearance */
	background-color: rgba(252, 181, 0, 0.2); /* #fcb500 = rgb(252,181,0), alpha 0.2 = 20% */
	display: block; /* Ensures the anchor fills the li for better clickability */
}

 ul.nav-btn-dl li a:hover {
	background-color: #ddd; /* Example hover effect */
	color: #2c261f;
}

/* 2025-12-25 - Grok-generated CSS class "top" for the paragraph containing the jump link */
.top {
	font-size: 0.8rem;
	text-align: right; /* Justifies the link to the right */
	margin: 10px 0; /* Optional: Adds some vertical spacing; adjust as needed */
}

/* Styles for the link in all states except hover */
.top a,
.top a:link,
.top a:visited,
.top a:active {
	color: #06b206; /* Green color with similar brightness and tone to #ffc107 */
	text-decoration: none; /* No underline */
}

/* Styles for the link on hover */
.top a:hover {
	color: #00ff00; /* Switches to golden yellow */
	text-decoration: underline; /* Underline becomes visible */
}

/* 2025-12-25 - Grok-generated CSS class "toc" for the paragraph containing the jump link */
.nav-toc {
	font-size: 0.8rem;
	text-align: right; /* Justifies the link to the right */
	margin: 10px 0; /* Optional: Adds some vertical spacing; adjust as needed */
}

/* Styles for the link in all states except hover */
.nav-toc a,
.nav-toc a:link,
.nav-toc a:visited,
.nav-toc a:active {
	color: #d29f07;
	text-decoration: none; /* No underline */
}

/* Styles for the link on hover */
.nav-toc a:hover {
	color: #00ff00; /* Switches to golden yellow */
	text-decoration: underline; /* Underline becomes visible */
}

/* 2025-12-25 - Make dd content indent on the left. */
dd {
	margin-left: 2rem;
}


.h2-glossary {
	color: #ffc107;
}

p.note {
	background-color: rgba(252, 181, 0, 0.2); /* #fcb500 = rgb(252,181,0), alpha 0.2 = 20% */
	border: 1px solid rgba(252, 181, 0, 0.4); /* 60% transparent = 0.4 opacity */;
	border-radius: 6px;
	color: #ccc;
	font-size: 0.9rem;
	font-style: italic;
	margin: 1rem 2rem 1rem 2rem;
	padding: 0.5rem 1rem 0.7rem 1rem;
  box-sizing: border-box; /* Matches Bootstrap's default for consistent sizing */
}

/* Apply float and width only on medium devices and up (tablets like iPads, laptops) */
@media (min-width: 768px) { /* Bootstrap's md breakpoint */
  .note {
    float: right;
    width: calc(100% * 4 / 12); /* Exactly 4/12 columns ~33.33% */
    margin-left: 1.5rem; /* Gutter spacing from left-flowing content; matches Bootstrap's typical column padding */
  }
}

/* Optional: For larger screens (lg+ like wide laptops), you can adjust if needed, but it's not required */
@media (min-width: 992px) {
  .note {
    /* Example: Slightly more margin for breathing room */
    margin-left: 2rem;
  }
}

/* Ensure all table borders are visible with 1px solid lines */
.table-bordered-custom {
	border: 1px solid #dee2e6; /* matches Bootstrap's default border color */
}

.table-bordered-custom th,
.table-bordered-custom td {
	border: 1px solid #dee2e6 !important; /* override Bootstrap to force visible borders on all sides */
	padding: 0.5rem; /* exactly 0.5rem padding as requested */
}