body {
    margin: 0;
}

.full-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns children to the top */
    min-height: 100vh;
    padding-top: 20px; /* Optional: Add some space from the top */
	/* border: 1px solid black; */
}





        .container {
			
			font-family: 'Roboto', sans-serif;
			display: flex;
			flex-direction: column;
            width:80%;
            justify-content: center;
            align-items: flex-start; /* Aligns children to the top */
           
			max-width: 728px;
            background-color: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
			/* border: 1px solid black; */
			
        }

        .box {
			width:100%;
            background-color: white;
            padding: 5px;
            margin: 5px 0;
            /* border: 1px solid black; */
        }

        .box table {
            width: 100%;
            border-collapse: collapse;
        }

        .box table th, .box table td {
            
            padding: 8px;
            text-align: left;
        }

        .box table th {
            
        }
		
		
		.hidden-column {
    				   display: none; /* Hide the column */
					   width: 0px;
		}
		
		
		.dictionaryCheckbox {
						   display: block;
    					   margin-top: 15px;
						   text-align: right;
		}
		

        .box ul {
            list-style-type: disc;
            padding-left: 20px;
        }

        .box ul li {
			padding: 5px 10px 5px 5px;
			line-height:1.5;
        }

        .box form {
            display: flex;
            flex-direction: column;
			align-items: center;
        }

        .box form input[type="text"], .box form input[type="submit"] {
            padding: 10px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 3px;
			margin: 0 auto;
			width:30%;
        }

        .box form input[type="submit"] {
            background-color: #f4f4f4;
            color: black;
            cursor: pointer;
			font-weight:bold;
			width:30%;
			margin-top:20px;

        }

        .box form input[type="submit"]:hover {
            background-color: #f4f4f4;
        }
		
		.section-header {
    	  background-color: #f4f4f4; 
		  padding:10px;
		  margin-bottom: 10px;
  		  margin-top: 10px;
		  text-align: center;
  		}
  
  		.pagetitle {
    	  text-align: center;
		  font-size:larger;
 		}

        .checkbox-container {
            display: flex;
            align-items: center;
            margin: 15px;
        }

        .checkbox-container input[type="checkbox"] {
            margin-right: 5px;
        }
 
 
	
.blurb {
	display: block;
	width: 100%;
  text-align: center;          /* centers text horizontally */
  font-size: 14px;              /* placeholder size */
  font-style: italic;
  font-weight: normal;          /* placeholder weight */
  color: #000000;               /* placeholder text color */
  margin: 10px 0;               /* placeholder vertical spacing */
  padding: 5px;                 /* placeholder padding */
}
 
 
     .tooltip-container {
            position: relative;
            display: inline-block;
            cursor: pointer;
			float: right;
        }

        .tooltip-container .tooltip-text {
            visibility: hidden;
            width: 350px;
            background-color: #555;
            color: #fff;
            text-align: left;
            border-radius: 5px;
            padding: 8px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position the tooltip above the icon */
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip-container .tooltip-text::after {
            content: '';
            position: absolute;
            top: 100%; /* Arrow points down */
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

        .tooltip-container:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
 
 
 
        .fa-question-circle {
            font-size: 18px;
            color: gray; 
        }
 
 		.header-fa-question-circle {
            font-size: 18px;
            color: gray;
			padding-left:5px; 
        } 
	
    
/* ===== Five-Section Header ===== */
header {
  display: flex;
  height: 50px;
  background-color: red;
}

.logo-section {
  width: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid white;
}

.logo-section img {
  max-height: 40px;
  max-width: 70px;
}

.section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.section.active {
  cursor: pointer;
}

.section.active a {
  color: white;
  text-decoration: none;
}

.section.active a:hover,
.section.active a:focus {
  color: white; /* keep it white on hover/focus */
  text-decoration: none;
}

.section.active:hover {
  background-color: gray;
}

.placeholder {
  cursor: default;
}
/* end header section */







.table-link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.table-link-button:hover {
    text-decoration: underline;
    text-decoration-color: black;
}





  /* Tooltip trigger */
  .tld-tip { position: relative; cursor: help; }

  /* The box */
  .tld-tip .tip-box {
    display: none;
    position: absolute;
    left: 100%;            
    top: 50%;
    transform: translateY(-50%);
    background: #d8ffd1;
    color: #000;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    white-space: pre-line; 
    z-index: 9999;
    width: 260px;         
	line-height: 1.5;
  }

  /* Arrow */
  .tld-tip .tip-box:before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #111 transparent transparent;
  }

  /* Show on hover */
  .tld-tip:hover .tip-box { display: block; }
  
  
  
  
  
  
  /* === FAQ accordion styling (append to bottom) === */
.faq details {
  margin: 0 0 10px 0; /* match spacing rhythm */
  border-radius: 10px; /* harmonize with .container */
  overflow: hidden;
      display: block;        /* force block element */
  width: 100%;           /* fill parent div */
  box-sizing: border-box; /* include padding in width */
  width:728px;
}



/* Make the question header look like .section-header */
.faq summary {
  background-color: #f4f4f4;       /* from .section-header */
  padding: 10px;                   /* from .section-header */
  margin-top: 10px;                /* from .section-header */
  margin-bottom: 10px;             /* from .section-header */
  text-align: left;              /* from .section-header */
  font-weight: 700;
  cursor: pointer;
  position: relative;
  list-style: none;
  outline: none;
  user-select: none;
  
      display: block;        /* force block element */
  width: 100%;           /* fill parent div */
  box-sizing: border-box; /* include padding in width */
}

/* Remove native marker */
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }

/* Chevron indicator */
.faq summary::after {
  content: "▸";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease;
  font-size: 1.1rem;
  line-height: 1;
}

.faq details[open] > summary::after {
  transform: translateY(-50%) rotate(90deg);
}

/* Answer block */
.faq .answer {
  background: #ffffff;
  padding: 10px 12px;
  line-height: 1.6;
}

/* Keyboard focus (align with your simple, high-contrast theme) */
.faq summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
  border-radius: 8px;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .faq summary::after { transition: none; }
}


