﻿/* IMPORTANT: bootstrap-overrides.css must be included BEFORE this stylesheet */

/* Custom background colors */
.bg-blue-tint {
	background-color: var(--blue-tint) !important;
}

/* Custom colors */
.color-orange {
	color: var(--orange) !important;
}



/* NAVBAR */
.navbar-versus {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-versus .nav-link {
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}

.navbar-versus .nav-link:hover,
.navbar-versus .nav-link:focus {
  color: var(--bs-warning); /* Or another accent color */
  text-decoration: none !important;
}

/* Style the toggle button (mobile hamburger) */
.navbar-toggler {
  border: none;
}

.navbar-toggler {
  background-color: transparent;
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}
.navbar-toggler-icon svg path {
  stroke-width: 3;
}



@media (max-width: 991.98px) {
  .navbar-versus {
    font-size: 0.75rem;
  }
}

.navbar-versus a,
.navbar-versus a:hover,
.navbar-versus a:focus {
  text-decoration: none !important;
}




/* BUTTONS */
.btn {
  text-decoration: none !important;
}

.btn:hover {
  text-decoration: none !important;
}



/* PRIMARY BUTTON */
.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.dropdown-toggle.show {
  background-color: var(--bs-primary-hover) !important;
  border-color: var(--bs-primary-hover) !important;
  color: #fff !important;
}

/* DANGER BUTTON */
.btn-danger {
  background-color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
  color: #fff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.dropdown-toggle.show {
  background-color: var(--bs-danger-hover) !important;
  border-color: var(--bs-danger-hover) !important;
  color: #fff !important;
}

/* WARNING BUTTON */
.btn-warning {
  background-color: var(--bs-warning) !important;
  border-color: var(--bs-warning) !important;
  color: #fff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.dropdown-toggle.show {
  background-color: var(--bs-warning-hover) !important;
  border-color: var(--bs-warning-hover) !important;
  color: #fff !important;
}

/* SUCCESS BUTTON */
.btn-success {
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
  color: #fff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.dropdown-toggle.show {
  background-color: var(--bs-success-hover) !important;
  border-color: var(--bs-success-hover) !important;
  color: #fff !important;
}

/* INFO BUTTON */
.btn-info {
  background-color: var(--bs-info) !important;
  border-color: var(--bs-info) !important;
  color: #fff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.dropdown-toggle.show {
  background-color: var(--bs-info-hover) !important;
  border-color: var(--bs-info-hover) !important;
  color: #fff !important;
}

/* SECONDARY BUTTON */
.btn-secondary {
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
  color: #fff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.dropdown-toggle.show {
  background-color: var(--bs-secondary-hover) !important;
  border-color: var(--bs-secondary-hover) !important;
  color: #fff !important;
}


.btn,
.card-header {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



/* Base card */
.card {
  border-radius: 4px;
  border: 0px solid var(--gray-light);
  background-color: var(--full-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

/* Card header */
.card-header {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--blue-accent) !important;
  color: var(--navy);
}

/* Card body */
.card-body {
  padding: 1rem;
  background-color: var(--full-white);
  color: var(--gray-dark);
}

/* Card footer */
.card-footer {
  padding: 0.75rem 1rem;
  background-color: var(--off-white);
  border-top: 1px solid var(--gray-light);
  font-size: 0.9rem;
  color: var(--slate-gray);
}

/* CARD VARIANTS */
.card-primary {
  border-color: var(--bs-primary);
}
.card-primary > .card-header {
  background-color: var(--bs-primary);
  color: var(--full-white);
}

.card-info {
  border-color: var(--bs-info);
}
.card-info > .card-header {
  background-color: var(--bs-info);
  color: var(--full-white);
}

.card-success {
  border-color: var(--bs-success);
}
.card-success > .card-header {
  background-color: var(--bs-success);
  color: var(--full-white);
}

.card-warning {
  border-color: var(--bs-warning);
}
.card-warning > .card-header {
  background-color: var(--bs-warning);
  color: var(--full-white);
}

.card-danger {
  border-color: var(--bs-danger-custom);
}
.card-danger > .card-header {
  background-color: var(--bs-danger-custom);
  color: var(--full-white);
}

/* Optional: Card title utility class */
.card-title {
  margin: 0;
  font-size: 1.15rem;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
    color: var(--full-white) !important;
}







/* Base style for list group inside cards */
.list-group {
  border: none;
}

/* List items: link-like and styled for readability */
.list-group-item {
  border: none;
  background-color: transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  color: var(--bs-dark);
  transition: background-color 0.15s ease-in-out;
}

/* List item hover: subtle interactivity */
.list-group-item:hover {
  background-color: var(--yellow-tint);
  color: var(--bs-primary);
  cursor: pointer;
}

/* Optional: make first line bold and second line smaller if present */
.list-group-item strong {
  display: block;
  font-weight: 600;
  color: var(--bs-dark);
}

.list-group-item small {
  color: var(--bs-secondary);
  font-size: 0.85rem;
}

.list-group-item .link-text {
  line-height: 1.2;
}

.list-group-item strong {
  display: block;
  margin-bottom: 0.1rem; /* tighten spacing */
  font-weight: 600;
  color: var(--bs-dark);
}

.link-subtext {
  display: block;
  font-size: 0.85rem;
  color: var(--bs-secondary);
  line-height: 1.1;
  margin-top: 0; /* eliminate extra spacing */
}




.checkbox input[type="checkbox"] {
  margin-right: 8px;
}



h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--navy);
  padding-bottom: 0.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem;
    margin-top: 1rem;
  }
}
h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--orange);
  margin-top: 0.5rem;
  
  /* Smart alignment */
  margin-left: 0; /* default: left-aligned */
}
@media (max-width: 767.98px) {
  h1::after {
    /* On mobile, center it */
    margin-left: auto;
    margin-right: auto;
  }
}

h1.text-center::after {
  margin-left: auto;
  margin-right: auto;
}



h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--slate-gray);
  padding-bottom: 0.2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 1.25rem;
  }
}


h3 {
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--navy) !important;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
@media (max-width: 767.98px) {
	h3 {
		font-size: 1.1rem;
	}
}

h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--slate-gray);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  h4 {
    font-size: 1rem;
  }
}

h5 {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  h5 {
    font-size: 0.9rem;
  }
}




body {
  background-color: var(--full-white);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}



a {
  color: var(--blue-accent);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.navbar {
  background-color: var(--navy);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #fff !important;
}

.footer {
  background-color: var(--navy);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.sidebar-left {
  background-color: #ffffff;
  border-right: 1px solid var(--gray-light);
  padding: 1rem;
}

.sidebar-right {
  background-color: #ffffff;
  padding: 1rem;
  border-left: 1px solid var(--gray-light);
}


/* Rankings Table Styling */
.rankings-table td,
.rankings-table th {
  color: var(--gray-dark) !important;
}

.rankings-table {
  --bs-table-striped-bg: var(--blue-tint);
}

.rankings-table {
  border-top: 3px solid var(--blue-accent); /* Eye-catching but subtle */
  background-color: var(--full-white);
  color: var(--gray-dark);
  font-size: 0.95rem;
}

/* Header row */
.rankings-table thead th {
  background-color: var(--navy);
  color: var(--full-white) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-light);
  padding: 0.75rem 0.5rem;
  white-space: nowrap;
}



/* Team Summary Key-Value Table Styling */
.team-summary-key-value-table {
  width: 100%;
  margin-bottom: 1.5rem;
  background-color: var(--full-white);
  color: var(--gray-dark);
  font-size: 0.95rem;
  border-collapse: collapse;
  border-left: 3px solid var(--blue-accent); /* Visual cue */
}

/* Stripe every other row for visual separation */
.team-summary-key-value-table tbody tr:nth-child(even) {
  background-color: var(--blue-tint);
}

.team-summary-key-value-table th[scope="row"] {
  font-weight: 600;
  color: var(--navy);
  width: 50%;
  white-space: nowrap;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--blue-tint);
}

/* Label column: first <td> in each row */
.team-summary-key-value-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--blue-tint);
}

/* Value column: second <td> in each row */
.team-summary-key-value-table td:last-child {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--gray-light);
}


/* Team Summary Grid-Table Styling */
.team-summary-grid-table td,
.team-summary-grid-table th {
  color: var(--gray-dark) !important;
}

.team-summary-grid-table {
  --bs-table-striped-bg: var(--blue-tint);
}

.team-summary-grid-table {
  border-top: 0px solid var(--blue-accent); /* Eye-catching but subtle */
  background-color: var(--full-white);
  color: var(--gray-dark);
  font-size: 0.95rem;
}

/* Header row */
.team-summary-grid-table thead th {
  background-color: var(--navy);
  color: var(--full-white) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-light);
  padding: 0.75rem 0.5rem;
  white-space: nowrap;
}


/* Optional: highlight stat rows */
tr.highlight-row td {
	font-weight: 700;
	position: relative;
}

tr.highlight-row td:last-child::after {
	content: '◀'; /* flipped pointer */
	color: var(--orange);
	font-size: 1.25rem; /* slightly larger */
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}
















/* Game Simulator table styling */
.center-label-comparison-table {
  width: 100%;
  margin-bottom: 1.5rem;
  background-color: var(--full-white);
  color: var(--gray-dark);
  font-size: 0.95rem;
  border-collapse: collapse;
  border-left: 3px solid var(--blue-accent);
}

/* Stripe every other row */
.center-label-comparison-table tbody tr:nth-child(even) {
  background-color: var(--blue-tint);
}

/* Header styling */
.center-label-comparison-table thead th {
  background-color: var(--blue-accent);
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border-bottom: 2px solid var(--gray-light);
  text-align: center;
}

/* Cell padding, borders, alignment (both td and th) */
.center-label-comparison-table td,
.center-label-comparison-table th {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
}

/* Highlight explicit center-label columns (used for the middle descriptor) */
.center-label-comparison-table .center-label {
  font-weight: 600;
  color: var(--navy);
  background-color: var(--blue-tint);
  text-align: center;
}

/* Optional: When table has 3 columns, apply fixed layout and equal widths */
.center-label-comparison-table:has(tr td:nth-child(3):last-child) {
  table-layout: fixed;
}

.center-label-comparison-table:has(tr td:nth-child(3):last-child) td,
.center-label-comparison-table:has(tr td:nth-child(3):last-child) th {
  width: 33.33%;
}

/* Optional: Emphasize center column when it's 4th in a 7-column layout */
/* Only apply this rule when there are 7 columns */
.center-label-comparison-table tr td:nth-child(4):nth-last-child(3) {
  font-weight: 600;
  color: var(--navy);
  background-color: var(--blue-tint);
  width: 35%;
}


/* Optional: Emphasize outer data columns (1–3 and 5–7) */
.center-label-comparison-table td:nth-child(-n+3),
.center-label-comparison-table td:nth-child(n+5) {
  color: var(--gray-dark);
}



/* Styling for the letter grades */
.stacked-grade-box {
	width: 50px;
	height: 50px;
	border-radius: 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.1;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.grade-square {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.grade-letter {
	font-size: 20px;
	line-height: 1;
}

.grade-number {
	font-size: 14px;
	line-height: 1;
}
.bigCircle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	font-size: 60px;
	color: #fff;
	line-height: 120px;
	text-align: center;
	background: #555555;
	display:inline-block;
}





/* STYLE 2 — Oswald + Open Sans */
.team-name-2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.4;
  color: var(--bs-primary); /* navy */
  letter-spacing: 0.5px;
}

.team-nickname-2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--bs-secondary); /* slate gray */
  text-transform: uppercase;
}


.team-name-3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--slate-gray);
  letter-spacing: 0.2px;
  line-height: 1.3;
  margin-bottom: 0;
}

.team-nickname-3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 2.0rem;
  color: var(--bs-primary);
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: -2px;
}



















/* Styling mainly for predictions pages */
.predictions-page .card {
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
}
.predictions-page .table {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.info-box {
  background-color: var(--bs-light);         
  border-left: 5px solid var(--bs-secondary); 
  color: var(--bs-dark);
  border-left-color: var(--bs-info);                     
}
.info-bestbets {
  border-left-color: var(--bs-success) !important; 
}
.info-sliders {
  border-left-color: var(--bs-secondary) !important;
}

.win-indicator {
  color: var(--orange) !important;
  font-size: 1.6em;
  margin-right: 5px;
  vertical-align: middle;
  line-height: 1;
}
.scale-button {
  color: var(--full-white);
  font-size: 1.4em;
  vertical-align: middle;
}
.vegasLineParagraph {
	margin-left:20px;
}
.plus-ev-bet {
  border: 0px solid var(--bs-success);
  border-radius: 0.25rem;
  color: var(--bs-success);
}
.plain-bet {
  border: 0px solid var(--bs-success);
  border-radius: 0.25rem;

}
.fighterRanking {
  color: var(--slate-gray);
  font-size: 0.8em;
}








/* Box sizing globally */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* START: Slider Styles */
.slider {
  width: 200px;
  margin: 100px auto;
}

/* Modern, brand-colored range slider */
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 10px;
  padding: 0;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: inset 0 1px 0 var(--gray-dark), inset 0 -1px 0 var(--slate-gray);
  outline: none;
}

/* WebKit browsers (Chrome, Safari, Edge Chromium) */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue-accent);
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}

input[type="range"]:hover::-webkit-slider-thumb {
  background-color: var(--bs-info-hover);
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background-color: var(--blue-accent);
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}

input[type="range"]:hover::-moz-range-thumb {
  background-color: var(--bs-info-hover);
}

/* IE/Edge (older versions) */
input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue-accent);
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}

/* Firefox track override */
input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}

/* IE track override */
input[type="range"]::-ms-track {
  background: transparent;
  color: transparent;
  border: none;
}

/* Remove tooltip in IE */
input[type="range"]::-ms-tooltip {
  display: none;
}
/* END: Slider Styles */








.division-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.division-link {
  padding: 0.5rem 1rem;
  background-color: var(--off-white);
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.division-link:hover,
.division-link:focus {
  background-color: var(--blue-accent);
  color: white;
}

.division-link.active {
  background-color: var(--navy);
  color: white;
  pointer-events: none;
}








.promo-cta-card {
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.9rem;
}

.promo-cta-card .card-title {
  font-weight: 600;
}

.promo-cta-card ul li i {
  margin-top: 2px;
}

.promo-cta-card i.fa-check-circle {
  font-size: 1.1rem;         /* Slightly larger */
  line-height: 1;            /* Tighten spacing */
  margin-top: 2px;           /* Nudge down */
}


.simulator-cta {
  background-color: var(--off-white);
  padding: 1rem;
  margin-top: 2rem;
  border: none !important;       /* fully remove borders */
  border-top: none !important;   /* extra insurance */
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


/* Mobile sticky CTA bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: var(--white);
  padding: 0.75rem 1rem;
  border-top: 1px solid #ddd;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
}





/* CSS for news items */
/* Container for each news item */
.news-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

/* Image styling */
.news-item-image {
	max-width: 100px;
	height: auto;
	margin-right: 15px;
}

/* Text container */
.news-item-text {
	flex-grow: 1;
}

/* Title */
.news-item-title {
	font-size: 14px;
	margin: 0;
}

/* Meta information (publisher + date) */
.news-item-meta {
	margin: 0;
	text-align: left;
	font-size: 12px;
	color: #666;
}

/* Date styling */
.news-item-date {
	font-size: 12px;
}


/* Container for each article item */
.article-item {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}

/* Article Title */
.article-title {
	font-size: 16px;
	margin: 0 0 5px 0;
	font-weight: bold;
}

.article-title a {
	text-decoration: none;
}

.article-title a:hover {
	text-decoration: underline;
}

/* Meta information (author, role, category, date) */
.article-meta {
	margin: 0;
	font-size: 12px;
	color: #666;
}

/* Date styling */
.article-date {
	font-size: 12px;
	font-style: italic;
}

/* View More link styling */
.view-more {
	text-align: center;
	margin-top: 10px;
}

.view-more a {
	display: inline-block;
	padding: 8px 12px;
	background-color: #4bc9ff;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.view-more a:hover {
	background-color: #232323;
}



/* Accordion styling like on FAQ page */
.accordion-button {
  background-color: var(--blue-tint);
  color: var(--navy);
  font-weight: 600;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--blue-accent);
  color: var(--full-white);
}

.accordion-body {
  background-color: var(--off-white);
  color: var(--bs-dark);
  border-top: 1px solid var(--gray-light);
}

.accordion-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.accordion-body li {
  margin-bottom: 0.5rem;
}



/* Testimonial card styling like on FAQ page */
/* Only applies to testimonial cards */
.testimonial-card {
  background-color: var(--full-white);
  border-color: var(--bs-info);
  transition: box-shadow 0.2s;
  border-width: 0px;
  border-style: solid;
  border-radius: 0.5rem;
}

.testimonial-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

/* Make the top part slightly tinted to differentiate it */
.testimonial-card .card-body {
  background-color: var(--blue-tint);  /* subtle brand tint */
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.testimonial-card .card-body p {
  font-size: 0.95rem;
  color: var(--bs-dark);
  margin-bottom: 0;
}

.testimonial-card .card-footer {
  background-color: var(--frost); /* your soft accent tone */
  border-top: 1px solid var(--gray-light);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}

.bg-testimonial-footer {
  background-color: var(--frost); /* separate helper class */
}

.testimonial-card img {
  border: 2px solid var(--bs-info);
}
.testimonial-initials {
  width: 60px;
  height: 60px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: inherit; /* your default font */
  border: 2px solid var(--bs-info); /* brand blue border */
  letter-spacing: 0.05em;
  user-select: none;
}
.testimonials-title {
  color: var(--bs-primary); /* your navy brand color */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}




/* Login Form Styling */
.loginForm {
	background-color: var(--blue-tint); /* Soft blue background for form */
	color: var(--gray-dark);
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.loginForm .form-group {
	margin-bottom: 1rem;
}

.loginForm .form-control {
	background-color: var(--full-white);
	border: 1px solid var(--gray-light);
	border-radius: 0.375rem;
	color: var(--gray-dark);
}

.loginForm .form-control:focus {
	border-color: var(--bs-primary); /* Navy border on focus */
	box-shadow: 0 0 0 0.2rem rgba(8, 41, 68, 0.15); /* Subtle navy shadow */
}

.loginForm label,
.loginForm .form-check-label {
	color: var(--slate-gray); /* Slate gray text */
}

.loginForm .btn-primary {
	background-color: var(--bs-primary); /* Navy */
	border-color: var(--bs-primary);
	color: #fff;
	font-weight: 600;
}

.loginForm .btn-primary:hover {
	background-color: var(--bs-primary-hover); /* Darker navy on hover */
	border-color: var(--bs-primary-hover);
}

.loginForm .form-group:last-of-type {
	margin-top: 1rem;
}



.table-no-border td,
.table-no-border th {
	border: none !important;
}







/* Styles for articles */
.article-meta {
	font-size: 16px;
	color: #777; /* a muted color for metadata */
	margin-bottom: 30px; /* space before the article content starts */
}

.author-name {
	font-weight: bold;
}

.article-date {
	font-style: italic;
}

/* Styles for the article author bio */
.author-bio {
	border-top: 1px solid #ddd; /* Optional: Add a border to separate from the main content */
	padding: 20px 0;            /* Padding around the bio */
	overflow: auto;             /* Ensure the container clears its floated children */
}

.author-bio img {
	float: left;              /* Float the image to the left */
	margin-right: 20px;      /* Space to the right of the image */
	border-radius: 50%;      /* Optional: Make the image circular */
	width: 100px;            /* Width of the image */
	height: 100px;           /* Height of the image */
}

.author-bio p {
	margin: 0;               /* Remove default margins */
}

.article-update {
	border-left: 5px solid #FF4500; /* This will create a distinct vertical bar on the left to signify an update */
	background-color: #FAF9F6; /* This is a very light background color for the update box */
	padding: 15px;
	margin: 20px 0; /* This gives space above and below the update box */
}

.article-update h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #FF4500; /* This color matches the left border for consistency */
}

.article-update h3 span {
	font-weight: normal;
	color: #333; /* A more muted color for the date */
}

.article-update p {
	font-size: 16px;
	color: #555; /* A darker text color for readability */
	line-height: 1.5; /* Spacing between lines for readability */
}

.disclaimer-box {
	background-color: #f8f8f8;
	border: 1px solid #ccc;
	padding: 15px;
	margin-top: 50px;
	font-size: 14px;
	color: #555;
	text-align: center;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.equation {
  text-indent: 20px;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 10px;
  padding: 5px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  line-height: 1.5;
}
