
/* ================================
   Airport Table Styles
   ================================ */
.airportTable {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: visible;      /* allow table content to show */
    text-align: left;
    width: auto;
}

/* ================================
   Page Styles
   ================================ */
.my-page {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    width: 100%;            /* Adjusts page width */
}
			/* Style for color BLUE */
				.color-blue {
					color	: #00FFFF	;
				}

			/* Style for color RED */
				.color-red {
					color	: #FDD7E4	;
				}

			/* Align text LEFT */
				.align-left {
					text-align: left	;
				}

			/* Style for the MAIN table on the Master page JMM */
				.mainTable {
					margin-left		: auto	;
					margin-right	: auto	;
				}

				.footerTimestamp td {
					line-height			: 0.5em		;
				}

				tr.night-flight {
					color: red;
				}

				.subheaders td {
					background-color	: grey;
					color				: #ffffff;
					font-weight			: 600;
					padding				: 5px 10px;
					text-align			: center;
					transition			: background-color 0.2s ease-in-out;
				}

				.totals-year-legend td {
					background-color	: black		;
					color				: white		;
					font-weight			: bold		;
					text-align			: center	!important	;
				}

				.totals-year td {
					background-color	: black		;
					color				: white		;
					font-weight			: bold		;
				}

				.totals-year-divider td {
					background-color	: #FF00FF	;
				}

tr.totals-year-divider {
    opacity: 1;
    transition: opacity 0.3s ease;  /* smooth fade over 0.3 seconds */
}
tr.totals-year-divider.hidden {
    opacity: 0;
    height: 0;
    line-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
}

tr.totals-year-divider td {
    background: linear-gradient(to bottom, #FF00FF 0%, #FF99FF 50%, #FF00FF 100%);
    border-top: 1px solid #FF00FF;
    border-bottom: 1px solid #FF00FF;
    height: 12px;  /* adjust to match your spacing preference */
}

				.totals-year-blank {
					background-color	: #E4E1E0	!important ;
				}

				.totals-accumulated td {
					background-color	: #00b151	;
					color				: white		;
					font-weight			: bold		;
				}

				.totals-accumulated-divider td {
					background-color	: #FF00FF	;
				}

				.totals-accumulated-blank {
					background-color	: #E4E1E0	!important ;
				}

				.jmm-bold {
					background-color	: black		;
					font-weight			: bold		;
				}

				.text-bold {
					font-weight			: bold		;
				}

				.text-center {
					text-align			: center	!important	;
				}

/* Center the first two columns in all rows */
table.flightsTable tr td:nth-child(1),
table.flightsTable tr td:nth-child(2) {
    text-align: center;
}

/* ==================================================================
   ITEMS ABOVE HERE I HAVE CONFIRMED ARE USED ON THIS CURRENT PROJECT
   ================================================================== */

/* Overall table */
.airportTable {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
	overflow: visible; /* allow sticky headers to show */
	text-align:left;
    width: auto;                 /* or 100% if you prefer */
}

/* Headers */
.airportTable thead th {
    background-color: grey;
    color: #ffffff;
    text-align: center;
    padding: 5px 10px;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

.airportTable thead th.sortable {
    cursor: pointer;
}

.airportTable thead th.sortable:hover {
    background-color: #d68fd6;
}

/* Cells */
.airportTable td,
.airportTable th {
    padding: 2px 10px;
    white-space: nowrap;
}

/* Hover effect (main rows only) */
.airportTable > tbody > tr:not(.noHover):hover {
    background-color: yellow;
    transition: background-color 0.15s ease-in-out;
}

/* Zebra striping (main rows only) */
.airportTable > tbody > tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.airportTable > tbody > tr:nth-child(even) {
    background-color: #ffffff;
}

/* Subtle row separator */
.airportTable tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

/* Hover effect (exclude rows with .noHover) */
.airportTable tbody tr:not(.noHover):hover {
    background-color: yellow;
    transition: background-color 0.15s ease-in-out;
}

/* Outer row cells */
.noHover > td {
    background-color: #E4E1E0;  /* grey for outer row */
    padding: 0; /* optional: remove spacing around inner table */
}

/* Inner table */
.subFooter {
    background-color: white !important; /* always white */
    border: none;
    border-collapse: collapse;
    margin: 0 auto;    /* center table */
    width: auto;
    text-align: center;
}

/* Inner table cells */
.subFooter td {
    background-color: white !important; /* keep cells white */
    border: none;
}

.airportTable {
    border-radius: 10px;
    overflow: hidden;
}

/* Subtle vertical dividers */
.airportTable td:not(:last-child),
.airportTable th:not(:last-child) {
	border-right: 1px solid #f0f0f0;}

.airportTable td.kbd-code {
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
}

.flightsTable td.kbd-code-left {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: left		!important			;
}

.flightsTable td.kbd-code-left-night {
    color		: red							;
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: left		!important			;
}

.flightsTable td.kbd-code-center {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: center	!important			;
}

.flightsTable td.kbd-code-center-night {
    color		: red							;
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: center	!important			;
}

.flightsTable td.kbd-code-right {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: right		!important			;
}

.flightsTable td.kbd-code-right-night {
    color		: red							;
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 11.0px;
    text-align	: right		!important			;
}

kbd {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12.0px;
}

kbd-left {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 12.0px						;
    text-align	: left							;
}

kbd-center {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 12.0px						;
    text-align	: center						;
}

kbd-right {
    font-family	: "IBM Plex Mono", monospace	;
    font-size	: 12.0px						;
    text-align	: right							;
}

.airportTable th {
    position: relative;
}

/* =========================================
   TEXT-BASED SORT ARROWS (BACKUP OPTION)
   ========================================= */

/* incase I wish to use these in the future, with a class called "airportTable"
	.airportTable th.asc::after {
		content: " ▲";
		font-size: 11px;
		opacity: 0.85;
	}

	.airportTable th.desc::after {
		content: " ▼";
		font-size: 11px;
		opacity: 0.85;
	}
*/

/* incase I wish to use these in the future, with just a class called "sortable"
	.sortable.asc::after {
		content: " ▲";
		font-size: 11px;
		opacity: 0.85;
	}

	.sortable.desc::after {
		content: " ▼";
		font-size: 11px;
		opacity: 0.85;
	}
*/

.airportTable th.asc,
.airportTable th.desc {
    background-color: #FF00FF;
}

.airportTable td.country-bermuda::before {
    color: blue;
}

.airportTable td.country-canada::before {
    color: red;
}

/* Shared icon base */
.airportTable th.asc::after,
.airportTable th.desc::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.65;
}

/* TEXT sorting */
.airportTable th.sort-text.asc::after {
    background-image: url("https://www.fusionwings.com/common/_icons/icon-sorted-a2z-white-lettering.png");
}

.airportTable th.sort-text.desc::after {
    background-image: url("https://www.fusionwings.com/common/_icons/icon-sorted-z2a-white-lettering.png");
}

/* NUMBER sorting */
.airportTable th.sort-number.asc::after {
    background-image: url("https://www.fusionwings.com/common/_icons/icon-sorted-9to0-white-lettering.png");
}

.airportTable th.sort-number.desc::after {
    background-image: url("https://www.fusionwings.com/common/_icons/icon-sorted-0to9-white-lettering.png");
}

.opacity50 {
		opacity: 0.50;
}

.opacity75 {
		opacity: 0.75;
}

.airportTable th:first-child,
.airportTable td:first-child {
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
	white-space: nowrap;
}

.myHeaderLabel {
	background-color	: grey		;
	border-radius		: 5px		;
	color				: white		;
	font-size			: 12.5px	;
	font-weight			: bold		;
	padding				: 1px		;
}

.mySpanLabel {
	background-color	: grey		;
	border-radius		: 5px		;
	color				: white		;
	font-size			: 12.5px	;
	font-weight			: bold		;
	padding				: 1px		;
}

.summary-table-legendLine th {
	background-color	: grey		;
	border-radius		: 5px		;
	color				: white		;
	font-size			: 12.5px	;
	font-weight			: bold		;
	padding				: 1px		;
    text-align: center;
    padding: 5px 10px;
}

.mixed-alignment-cell {
  /* Ensures the TD can contain the aligned elements effectively */
  width: 100%; 
}

.left-aligned-content {
  text-align: left; /* Aligns content to the left within its div */
}

.centered-content {
  text-align: center; /* Centers content within its div */
}


.country-flag {
    position: relative;
}

/* =====================
   Base bullet + flag styling
   ===================== */
.country-flag::before {
    content: "●";              /* bullet */
    font-size: 1em;            /* bullet size */
    margin-right: 0.15em;      /* space between bullet and flag */
    vertical-align: 0.05em;    /* fine-tune alignment with flag */
}

/* Hide bullet for single-airport cells, but reserve space */
.country-flag.no-bullet::before {
    content: "\00a0";          /* invisible placeholder */
    opacity: 0;                /* make it invisible */
    margin-right: 0.15em;      /* keep alignment with other cells */
    font-size: 1em;            /* same as bullet size */
}

/* Flag styling */
.country-flag a::before {
    content: "";
    display: inline-block;
    height: 0.85em;             /* larger for details */
    aspect-ratio: 32 / 22;  	/* ~1.4545 */
    margin-right: 0.50em;       /* space between flag and text */
    vertical-align: -0.06em;    /* visually centered with text */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Per-country flags */
.country-bermuda a::before {
    background-image: url("https://www.fusionwings.com/common/Images/Icons/flags/flag-bermuda2x.png");
}
.country-canada a::before {
    background-image: url("https://www.fusionwings.com/common/Images/Icons/flags/flag-canada2x.png");
}

.country-portugal a::before {
    background-image: url("https://www.fusionwings.com/common/Images/Icons/flags/flag-portugal2x.png");
}
.country-usa a::before {
    background-image: url("https://www.fusionwings.com/common/Images/Icons/flags/flag-usa2x.png");
}

tr.night-flight {
    color: red;
}

/* Make table cells respect border-radius */
table {
  border-collapse: separate; /* critical */
  border-spacing: 0; /* optional, for tighter look */
}

/* Legend row styling */
tr.column-legend td {
    background-color: grey;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 5px 3px; /* adjust as needed */
}

/* Rounded corners for first and last cell */
tr.column-legend td:first-child {
    border-top-left-radius: 5px; /* or 10px */
}

tr.column-legend td:last-child {
    border-top-right-radius: 5px; /* or 10px */
}

/* Default link styling (blue) */
/* Default link styling (day flights) */
.airport-link {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

/* Night flights: links inside rows with class 'night-flight' */
tr.night-flight td .airport-link {
    color: red;
}

.airport-link:hover {
    text-decoration: underline;
}

/* Simple styles to mimic your table setup */
.airportTable {
    border-collapse: collapse;
    width: 100%;
}

.airportTable th, .airportTable td {
    border: 1px solid #ccc;
    padding: 4px 4px;
    text-align: left;
}

/* Monospace left-aligned code cells */
.kbd-code-left { 
    font-family: "IBM Plex Mono", monospace; 
    text-align: left; 
}

			/* RED label for Ratings */
				.rating {
					background-color	: red		;
					border-radius		: 5px		;
					color				: white		;
					font-size			: 10.5px	;
					font-weight			: bold		;
					padding				: 2px 5px	;
					text-align			: center	;
				}

/* BLUE label for the NOTES column: Ratings */
	.label-blue {
		background-color	: blue		;
		border-radius		: 5px		;
		color				: white		;
		font-size			: 10.5px	;
		font-weight			: bold		;
		padding				: 2px 5px	;
		text-align			: center	;
	}

/* GREEN label for the NOTES column: Ratings */
	.label-green {
		background-color	: green		;
		border-radius		: 5px		;
		color				: white		;
		font-size			: 10.5px	;
		font-weight			: bold		;
		padding				: 2px 5px	;
		text-align			: center	;
		margin-bottom		: 2px			;	/* adds space below label */
		margin-top			: 2px			;	/* adds space above label */
	}

/* MAGENTA label for the NOTES column: Ratings */
	.label-magenta {
		background-color	: #FF00FF		;
		border-radius		: 5px			;
		color				: white			;
		font-size			: 10.5px		;
		font-weight			: bold			;
		padding				: 2px 5px		;
		text-align			: center		;
		display				: inline-block	;	/* ensures margin behaves as expected */
		margin-bottom		: 1px			;	/* adds space below label */
		margin-top			: 2px			;	/* adds space above label */
	}

/* RED label for the NOTES column: Ratings */
	.label-red {
		background-color	: red		;
		border-radius		: 5px		;
		color				: white		;
		font-size			: 10.5px	;
		font-weight			: bold		;
		padding				: 2px 5px	;
		text-align			: center	;
	}

.label-white {
    background-color: white;
    border: 1px solid #999;
    border-radius: 5px;
    color: black;
    font-size: 10.5px;
    font-weight: bold;
    padding: 2px 5px;       /* keeps text nicely padded inside label */
    text-align: center;
    display: inline-block;   /* ensures margin behaves as expected */
    margin-bottom: 1px;      /* adds space below label */
    margin-top: 1px;      /* adds space above label */
}

/* YELLOW label for the NOTES column: Ratings */
.label-yellow {
    background-color: yellow;
    border: 1px solid #999;
    border-radius: 5px;
    color: black;
    font-size: 10.5px;
    font-weight: bold;
    padding: 2px 5px;       /* keeps text nicely padded inside label */
    text-align: center;
    display: inline-block;   /* ensures margin behaves as expected */
    margin-bottom: 1px;      /* adds space below label */
    margin-top: 2px;      /* adds space above label */
}

.mixed-alignment-cell .label-blue,
.mixed-alignment-cell .label-green,
.mixed-alignment-cell .label-magenta,
.mixed-alignment-cell .label-red {
    display	: inline-block;
    margin-bottom	: 1px;
	padding			: 2px 5px	;
}

/* Optional: ensure table scrolls instead of body scroll */

/* Full screen page layout */
.page-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Summary table sizing inside its wrapper */
/* SUMMARY TABLE: only shrink width, inherit everything from airportTable */
.summary-table {
    width: auto;        /* table only as wide as its content */
}

/* Table behaves like a normal table */
.flightsTable {
    border-collapse: collapse;
    width: 100%;
}


<!-- SEARCH HIGHLIGHT CSS -->
mark.search-highlight {
    background-color: #00FF00	!important	;
    color			: black		!important	;
    font-weight		: bold					;
}

/* Main CSS file (after all other styles) */

/* Included table override */
.subfooterTimestamp,
.subfooterTimestamp tr,
.subfooterTimestamp td {
    background-color: white !important; 
    border: none !important;             
    border-collapse: collapse;
    text-align: center;
}

.subfooterTimestamp {
    width: auto;      
    margin: 0 auto;  
}

/* Entire search box row */
td.searchBoxRow {
    text-align: center;          /* center the content inside the td */
    background-color: #E4E1E0;   /* row background color */
    padding: 10px 0;             /* optional vertical spacing */
}

/* Inner wrapper (the box itself) */
.searchBoxWrapper {
    display: inline-block;       /* shrink-wrap to content */
    background-color: #f0f0f0;   /* the light grey background of the box */
    border: 2px solid #999;      /* border around the entire search box */
    border-radius: 8px;           /* optional: rounded corners */
    padding: 10px 15px;          /* inner spacing inside the box */
    text-align: center;          /* center contents inside the box */
}

/* ================================
   Flights Table Civil Header Styles
   (Clean, no sticky behavior)
   ================================ */
.flightsTable thead th {
    background-color: grey;   /* header background */
    color: white;             /* header text color */
    padding: 5px 10px;        /* spacing inside header cells */
    text-align: center;       /* center text */
    position: static;         /* remove sticky behavior */
    z-index: auto;            /* default stacking */
}

/* SEARCH HIGHLIGHT CSS for span */
span.search-highlight {
    background-color: #00FF00 !important;
    color: black !important;
    font-weight: bold;
}

.search-highlight-green {
    background-color: #00FF00;
    color: black;
    /* font-weight: bold; */
}

.url-color-blue {
    color		: blue	;
    font-weight	: bold	;
}

.url-color-blue-images {
    color		: blue	;
    font-weight	: bold	;
}

/* ==============================
   Base table styling (all tables)
   ============================== */
.airportTable {
    border-collapse: separate;   /* allows border-radius on wrapper */
    border-spacing: 0;           /* no extra spacing between cells */
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    width: auto;                 /* shrink-to-fit content by default */
}

/* Optional modifier for summary tables */
.summary-table {
    width: auto;                 /* keeps summary table as narrow as needed */
}

/* ==============================
   Wrapper for main flights table
   ============================== */

/* Main table wrapper */
.table-wrapper {
    border: 10px solid;
	border-color: var(--color-border-table-main);   /* color comes from variable */
    border-radius: 20px;
    box-sizing: border-box; /* include border in width calculation */
    display: inline-block; /* shrink-wrap the wrapper around table */
    max-width: 100%;       /* never exceed viewport width */
    overflow: hidden;      /* clip nicely inside rounded border */
    padding: 6px;   /* ← THIS creates the gap between border and table: try 4px, 6px, 8px, etc. */
}

/* Main table */
.airportTable {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    width: 100%; /* table fills wrapper */
}


/* ==============================
   Wrapper for summary table
   ============================== */
/* Places a colored border around the wrapper DIV that holds the SUMMARY table */
/* Wrapper around summary table, blue border */
.table-wrapper-summary {
    display: inline-block;       /* shrink-to-fit the table */
    border: 10px solid;
	border-color: var(--color-border-table-summary);
    border-radius: 20px;
    margin-top: 15px;             /* spacing from main table */
    overflow: hidden;            /* ensures inner table respects rounded corners */
    padding: 5px;                /* optional: space between table and border */
    vertical-align: top;         /* aligns nicely if there is content next to it */
}

/* ----------------------------
   Base table: applies to all flights tables
------------------------------- */
.flightsTable {
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    width: 100%;           /* main table takes full width */
    overflow: visible;      /* table content displays normally */
}

/* Base cell styles */
.flightsTable td.kbd-code-left {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: left !important;
}

.flightsTable td.kbd-code-left-night {
    color: red;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: left !important;
}

.flightsTable td.kbd-code-center {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: center !important;
}

.flightsTable td.kbd-code-center-night {
    color: red;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: center !important;
}

.flightsTable td.kbd-code-right {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: right !important;
}

.flightsTable td.kbd-code-right-night {
    color: red;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.0px;
    text-align: right !important;
}

/* ==============================
   PSEUDO-HEADER ROWS STYLING
   ============================== */

/* Target the pseudo-header row class */
.pseudo-header-row {
    background-color: grey;   /* same as main header */
    border-bottom: 2px solid #0a2b4c;
    color: white;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

/* Style the <th> inside pseudo-header */
.pseudo-header-row th {
    padding: 6px 8px;
    border-right: 1px solid #0a2b4c;
    vertical-align: middle;
    text-align: center;
}

/* Remove right border on last cell */
.pseudo-header-row th:last-child {
    border-right: none;
}

/* Rounded top corners for first and last header cells */
.pseudo-header-row:first-child th:first-child {
    border-top-left-radius: 10px;
}

.pseudo-header-row:first-child th:last-child {
    border-top-right-radius: 10px;
}

/* Optional: keep pseudo-header from zebra-striping and hover */
.airportTable tbody tr.pseudo-header-row {
    background-color: grey; /* overrides any tbody row coloring */
}

/* Prevent hover from changing pseudo-header background */
.airportTable tbody tr.pseudo-header-row:hover {
    background-color: grey;
}

tr.blurb-background td {
	background-color: var(--color-blurb-background);
}

tr.blurb-text td {
	color			: var(--color-blurb-text);
}

tr.year-divider td {
	background-color: var(--color-divider-year); /* same as table border */
	height: 10px !important;  /* adjust to match your spacing preference */
}

tr.year-divider:hover {
	background-color: var(--color-divider-year-nohover) !important; /* ignore table hover */
}

td.day-time-override {
    color: #000000 !important;           /* force default text color */
    background-color: inherit !important; /* keep background same as row */
}

#aircraft-popup {
    position: absolute;
    display: none;
    border: 4px solid;
	border-color: var(--color-border-aircraft-popup);
    border-radius: 12px;
    background: #000;
    padding: 2px;
    z-index: 9999;
}

#aircraft-popup img {
    border-radius: 6px;
}


#summary-popup {
    position: absolute;
    display: none;
    border: 4px solid;
	border-color: var(--color-border-aircraft-popup);
    background: #000;
    padding: 2px;
    z-index: 9999;
}

#summary-popup-civilian {
    position: absolute;
    display: none;
    border: 4px solid;
	border-color: var(--color-border-aircraft-popup);
    border-radius: 12px;
    background: #000;
    padding: 2px;
    z-index: 9999;
}

#summary-popup-civilian img {
    border-radius: 6px;
}

#summary-popup-military {
    position: absolute;
    display: none;
    border: 4px solid;
	border-color: var(--color-border-aircraft-popup);
    border-radius: 12px;
    background: #000;
    padding: 2px;
    z-index: 9999;
	overflow: hidden;
}

img.summary-placeholder-military {
    background: #000;
    border: 4px solid;
    border-color: var(--color-border-aircraft-popup);
    border-radius: 12px;
    background: #000;
    padding: 2px;
}


#summary-popup-military img {
    border-radius: 6px;
}

#aircraft-popup img {
    max-width: 600px;
    max-height: 80vh; /* never taller than 80% of viewport */
    width: auto;
    height: auto;
}

#summary-popup img {
    max-width: 600px;
    max-height: 80vh;
    width: auto;
    height: auto;
}

#summary-popup-civilian img {
    max-width: 600px;
    max-height: 80vh;
    width: auto;
    height: auto;
}

#summary-popup-military img {
    max-width: 600px;
    max-height: 80vh;
    width: auto;
    height: auto;
}

.col-instructor {
    width: 1%;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.col-instructor small {
    font-size: 85%;
}

.col-passengers small {
    font-size: 85%;
}

	.rounded-corner-top-left {
		border-top-left-radius : 12px	;
	}

	.rounded-corner-top-right {
		border-top-right-radius : 12px	;
	}

	.header-border-top-bottom td,
	.header-border-top-bottom th {
		border: 1px solid white;
	}

	.summary-header-cyan {
		color		: cyan	;
		font-weight	: bold	;
	}

.summary-tables-wrapper {
    display: flex;                   /* side by side */
    justify-content: center;         /* center horizontally */
    gap: 20px;                       /* spacing between tables */
    flex-wrap: wrap;                 /* allow tables to wrap if needed */
}

/* ================================
   Continue with other CSS rules...
   Add more sections as needed
   ================================ */


