body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.sidebar {
	background-color: #f8f9fa; /* 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: 1rem;
	text-transform: uppercase;
	color: #495057;
	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: 0px 0;
}
.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 */
}
.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;
}
.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 */
}
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 */
}
.footnote {
	color: gray;
	font-size: smaller;
	border: 0;
}
.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); /* Top-to-bottom */
  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%;
}


/* Specific background colors for the vertical category cell only */
.category-mindset {
  background-color: #dceefb !important; /* Light blue */
}

.category-discipline {
  background-color: #fbeed7 !important; /* soft tan or peach tone */
}

.category-team {
  background-color: #e6f4ea !important; /* Light green */
}

.category-org {
  background-color: #fff3cd !important; /* soft yellow */
}

.category-complexity {
  background-color: #e2e3f3 !important; /* soft lavender */
}

.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;
	min-height: 3em;
} 
.book-item {
	border-right: 1px solid #dee2e6;
}

.book-item:last-child {
	border-right: none;
}

.affiliate-links {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-top: 2rem;
}
.affiliate-links img {
	max-width: 100%;
	height: auto;
}
.footer {
	background-color: #343a40;
	color: white;
	text-align: center;
	padding: 1rem 0;
}
@media (max-width: 767.98px) {
  .book-item {
	padding: 15px;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }

  .book-item:last-child {
    border-bottom: none;
  }
}