a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
	
header {
    width: 100%;
    background-color: #FFFFFF;
    text-align: center;

    padding-top: 70px; /* space for fixed nav */
}
	
.box-title {
    font-weight: bold;
    color: #FFFFFF;
}


body {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12pt;
    font-weight: normal;
    color: #444;
}


	/*------Layout Containers------*/	
	
#outercontainer {
    width: 100%;
    margin: auto;
    background-color: #FFFFFF;

    color:#FF1E00;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15pt;
    font-weight: normal;
    text-align: center;
}


header h1 {
    font-size: 32pt;
    margin: 20px 0 10px;
    color: #FF1E00;
}

	/*Navigation*/
	
#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: center;
    gap: 30px;

    background-color: #FF1E00;
    padding: 14px 0;
    border-radius: 0 0 12px 12px;
}
	
#nav a {
    color: white;
    font-weight: bold;
}

:target {
    scroll-margin-top: 80px;
}

	/*------Introduction Text Style------*/
	
.intro {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;

    font-size: 12pt;
    font-weight: normal;
    line-height: 1.5;
    color: #444;
}
	

	/*------Flexbox Card Section------*/	
	
	
.boxes {
    display: flex;
	justify-content: center;
    gap: 36px;
	flex-wrap: wrap;
}

.box {
    width: 350px;
 	padding: 15px;	
	
    background-color: #FF1E00;
	color: #FFFFFF;
	border-radius:12px;
	
	display: flex;
    flex-direction: column;   /* stack children vertically */
    align-items: center;      /* center horizontally */
    justify-content: flex-start; /* keep content top-aligned */
    gap: 8px;                 /* consistent small spacing between children */
	
	
    text-align: center;
    font-weight: normal;	
}

.box-title {
    font-size: 14pt;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.definition {
    font-size: 12pt;        
    line-height: 1.3;     
}
	
	/*------ Images & Figures------*/

img {
    display: block;
    margin: 40px auto;
    width: 500px;       
    border-radius: 12px;
}
	
figure {
    margin: 10px auto;
    text-align: center;
}

figcaption {
    margin-top: 0px;
    font-size: 6pt;
    color: #555;
}

figcaption a {
    color: #FF1E00;
    font-weight: bold;
    text-decoration: none;
}

figcaption a:hover {
    text-decoration: underline;
}

	/*------Tables (General)------*/
	

table {
    margin: 10px auto;          
    border-collapse: collapse;
    font-size: 12pt;
}

th, td {
    border: 1px solid black;   /* thin black border for all cells */
    padding: 8px 12px;
    text-align: center;        /* center text */
}

th {
    color: #FFFFFF;  
	background-color:#FF1E00 ;
    font-weight: bold;
	float: auto;

}
	

	/*------Table 1 Specific Format------*/	
	
.comparison-table {
    width: 520px;
    font-size: 11.5pt;
    border-collapse: collapse;
}	
	

	/*------Highlights & Callouts------*/
	
.highlight {
    background-color: #fde4e8;
}

.info-box {
    max-width: 700px;
    margin: 20px auto;
    padding: 12px 16px;
    background-color: #fde4e8;
    color: #333;
    border-radius: 12px;
    font-size: 11.5pt;
    font-weight: normal;
    text-align: center;
}

.info-box a {
    color: #FF1E00;
    font-weight: bold;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}
	
	
	/*------Glossary-----*/
#glossary h2 {
    color: #FF1E00;
    margin-bottom: 12px;
}

dl {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

dt {
    font-weight: bold;
    color: #FF1E00;
    margin-top: 12px;
}

dd {
    margin-left: 0;
    margin-bottom: 8px;
    line-height: 1.4;
}

	
	/* Core column: TOTAL POINTS (5th column) */
.comparison-table th:nth-child(5),
.comparison-table td:nth-child(5) {
    background-color: #ffe6e1;   /* soft red tint */
    font-weight: bold;
    color: #111;
}

/* Keep header strong */
.comparison-table th:nth-child(5) {
    background-color: #FF1E00;
    color: #FFFFFF;
}

	
		/*------CSS Styles-----*/

		/* Row hover highlight */
	.row-hover td:nth-child(2) {
    color: #FF1E00;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}



	/* Extra spotlight for core column cell */
	.core-hover {
		background-color: #FF1E00 !important;
		color: #FFFFFF !important;
		font-weight: bold;
}

		/*------Pop Up Styling-----*/

	#stat-popup {
		display: none;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 320px;
		padding: 20px;
		background-color: #FFFFFF;
		border-radius: 12px;
		box-shadow: 0 12px 30px rgba(0,0,0,0.25);
		z-index: 2000;
		text-align: center;
	}

	#stat-popup h3 {
		color: #FF1E00;
		margin-bottom: 12px;
	}

	#stat-popup p {
		margin: 6px 0;
		font-size: 11.5pt;
	}
	
	