body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#site-alert {
  background-color: #dc3545; /* Bootstrap red */
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
}
.tagline {
	font-size: small;
	font-style: italic;
}
.agile-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
.agile-table th, .agile-table td {
	border: 1px solid #dee2e6;
	padding: 10px;
	text-align: left;
}
.agile-table th {
	background-color: #343a40;
	color: white;
}
.agile-table tbody tr:nth-child(even) {
    background-color: #f8f9fa !important; /* Light gray for even rows */
}
.agile-table tbody tr:nth-child(odd) {
    background-color: #ffffff !important; /* White for odd rows */
}
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: bold;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid #dee2e6;
}

.vertical-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Optional: Category-specific background colors */
.category-foundations {
  background-color: #e1f0ff !important;
}
.category-patterns {
  background-color: #fff0e1 !important;
}
.category-anti-patterns {
  background-color: #e7fff1 !important;
}
.category-mindset {
  background-color: #fffbe6 !important;
}
.category-reflective {
  background-color: #f0eaff !important;
}
.category-coaching {
  background-color: #edf7ed !important;
}
.sidebar {
	background-color: #e9ecef; /* Light background */
	border-right: 1px solid #dee2e6; /* Optional border for separation */
	padding: 0; /* Remove padding from the sidebar */
}
.sidebar .section-title {
	padding: 5px 15px;
	font-weight: bold;
	font-size: 0.9rem;
	text-transform: uppercase;
	color: #495057;
	background-color: #e9ecef;
	margin: 0; /* Remove margin from the section title */
}
.sidebar .section-link {
	padding: 0px 0px; /* Indent for links */
	margin: 0;
	text-decoration: none;
	color: #495057;
}
.sidebar .nav-link {
	padding: 0px 30px; /* Indent for links */
	margin: 0;
	font-size: 0.85rem; /* Slightly smaller than the section titles */
}
.content {
	flex: 1;
}
.center-box {
	background-color: #f8f9fa; /* Light gray background */
	border: 1px solid #ddd; /* Optional border for better visibility */
	border-radius: 8px; /* Rounded corners */
	padding: 20px; /* Space inside the box */
	font-family: "Comic Sans MS", "Comic Sans", cursive; /* Handwritten-like font */
	max-width: 600px; /* Max width of the box */
	margin: auto; /* Center the box horizontally */
	text-align: center; /* Center the text inside the box */
}
.blockquote-footer {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1rem;
	color: #6c757d;
	text-align: right;
	padding: 0; /* Removes any padding */
	margin: 0; /* Optionally remove margins too */
}
.highlight-key {
  color: #5a5a5a; /* Dark gray for quiet emphasis */
  font-weight: bold;  /* Optional if you want slight lift */
}
figcaption {
    text-align: center;
    margin-top: 0.5rem; /* Add some spacing above if needed */
    font-size: 0.9rem; /* Optional: Adjust font size */
	font-style: italic; /* Makes the text italic */
    color: #555; /* Optional: Adjust text color */
}

.coaching-tip {
  display: flex;
  align-items: flex-start;
  border-left: 5px solid #0d6efd;
  background-color: #f3f8ff;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 0.375rem;
  font-size: 1rem;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.1);
}
.coaching-tip-icon {
  font-size: 1.5rem;
  color: #ffc107; /* Bootstrap yellow */
  margin-right: 0.75rem;
  margin-top: 0.15rem;
}
.coaching-tip h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #0d6efd;
  font-size: 1.1rem;
}
.coaching-tip p:last-child {
  margin-bottom: 0;
}
.coaching-insight {
  display: flex;
  align-items: flex-start;
  border-left: 4px solid #0dcaf0; /* Light blue */
  background-color: #e9f7fc; /* Very light blue background */
  padding: 0.75rem 1rem;
  margin: 1.5rem auto; /* Centered horizontally */
  border-radius: 0.5rem;
  font-size: 0.9rem; /* Smaller font size */
  box-shadow: 0 0 0 1px rgba(13, 202, 240, 0.15);
  width: 80%; /* 80% width */
}
.coaching-insight-icon {
  font-size: 1.1rem; /* Slightly smaller icon */
  color: #0dcaf0;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}
.coaching-insight h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: #0d6efd;
  font-size: 0.95rem; /* Smaller heading */
}
.coaching-insight p:last-child {
  margin-bottom: 0;
  color: #212529;
}
.footnote {
	color: gray;
	font-size: smaller;
	border: 0;
}
.learn-more-box {
	background-color: #e9ecef; /* Matches sidebar background color */
	border: 1px solid #dee2e6; /* Adds a border around the box */
	border-radius: 8px; /* Optional rounded corners */
	padding: 15px; /* Adds space inside the box */
	margin-top: 20px; /* Adds space between the header and this box */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow for better visibility */
	text-align: center; /* Centers inline and inline-block content */
}
.book-image {
	height: 150px;
	align-content: center;
}  
.book-title {
	font-weight: bold;
	font-style: italic;
	color: RoyalBlue;
} 
.book-divider {
  border: 0;
  height: 1px;
  background-color: black; /*#dee2e6;  light gray line */
  margin: 1rem 0; /* spacing above and below */
}

.footer {
	background-color: #343a40;
	color: white;
	text-align: center;
	padding: 1rem 0;
}

@media (max-width: 767.98px) {
  .offcanvas .nav-link.section-title {
    padding-top: 0.5rem !important;
    padding-bottom: 0rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}



.offcanvas .nav-link {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  
}

.offcanvas .nav-item {
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  font-size: 0.9rem !important;
}




