 /* X PAGE  */
body {
	user-select: none; /* Prevents text selection */
}


/* Font size classes */
body.font-size-normal .font-size-resizeable{
	font-size: 1em; /* Normal size */
  }
  
  body.font-size-large .font-size-resizeable{
	font-size: 1.25em; /* Large size */
  }
  
  body.font-size-x-large .font-size-resizeable{
	font-size: 1.5em; /* X-Large size */
  }

  #promptForm{
	padding-top: 20px;
  }
html, body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	background-color: white;
}
li{
	line-height: 1.5;
}
ul li{
	list-style-type: disc !important;
}
#item-notes ul{
	padding-left: 35px;
	list-style-type: bullet;
}

.mixin2{
	margin: 0 !important;
}
  
.content {
	flex: 1; /* Take up remaining space */
}

 /* X HEADER  */
.header {
	
	/*padding: 20px 50px;  Adjusted padding for better spacing */
	background-color: #ffffff;
	display: flex;
	align-items: center; /* Center content vertically */
	justify-content: space-between; /* Ensure columns are spaced correctly */
	width: 100%; /* Ensure container spans the full width */
	box-sizing: border-box; 
	padding: 20px 10px;
  }


  .column {
	text-align: center; /* Center content horizontally inside each column */
	padding: 0; /* Reset padding if there’s any */
	margin: 0; /* Reset margin */  }
  
  .column.fixed {
	flex: 0 0 60px; /* Fixed width for the outer columns */
	position: relative;
}
  
  .column.variable {
	flex: 1; /* Allow the middle column to grow/shrink dynamically */
	max-width: calc(100% - 300px); /* Prevent it from exceeding the remaining space */
	text-align: center; /* Center text horizontally */
  }

  .button-text{
	position: absolute;
	line-height: 1.2;
	margin-top: 4px;
	font-size: 10px;
  }
  




#card-section-header{
  text-align: center;
  margin: 30px auto;
  font-size: 2rem;
  /* font-weight: bold; */
  color: grey;
  max-width: 1000px;
  width: 100%;
  
}
  .fade-item, .fade-item2 {
	opacity: 0; /* Initial state hidden */
	transition: opacity 1s ease-in-out; /* Ensure smooth transition */
	line-height: 1.2;
  }
  
  .header-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	width: 40px;
	height: 40px;
	background-color: #3D69A5;
	color: white;
	border: 2px solid #3D69A5;
	border-radius: 50%;
	/*margin-right: 100px; /* Added margin for spacing */
	margin: 0 5px;
	cursor: pointer;
  }
  .header-button:active {
	color: #3D69A5;
	background-color: white;
  }
  
  .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1; /* Allows the logo to take up remaining space */
	text-align: center; /* Centers the logo */
  }
  
  .logo img {
	width: 300px;
  }
  
  .button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px; /* Added margin for spacing */
  }
  
  .button {
	padding: 10px 20px;
	border: 2px solid #3D69A5;
	border-radius: 5px;
	color: #3D69A5;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
  }
  .button:active {
	background-color: #3D69A5; 
	color: white;
  }

  
  /* Responsive adjustments for header */
  @media screen and (max-width: 600px) {

	
	  /*
	#home, .button-container {
	  margin: 10px 0;
	}
	.logo {
	  margin: 10px 5px;
	}

	.button {
		padding: 10px 5px;
		font-size: 0.5em;
	  } */
  }
  
 /* X HERO  */
  #section-hero {
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Changed to align items to the start */
	padding: 50px 80px;
	background-color: #f0f4f8; /* Light background color */
	background-color: #3D69A5;
	height: 300px; /* Set a fixed height for the section */
  }
  
  .text-container {
	text-align: left;
	max-width: 1200px; /* Set a maximum width for better alignment */
  }
  
  .text-container h1 {
	font-size: 4.5em;
	font-weight: bold;
	margin: 0;
	/*color: #6e6e6e; /* Gray color for "PLAN IT." and "SOURCE IT." */
	color: white;
  }
  


  #section-tools h2 span{
	display: block;	
  }

  @media screen and (max-width: 620px) {
	
  }

 /* X INITIAL SCREEN  */

  @media screen and (max-width: 382px) {
	.text-container h1 {
	  font-size: 2.4em !important;
	  margin-right: 20px; /* Space between elements */
	}
	#tool-container2{
		zoom: .5 !important;
	}
  }

  

  @media screen and (max-width: 600px) {
	
	#section-hero {
		padding: 25px 40px;
		height: 200px; 
	}
	#tool-container2{
		zoom: .6;
	}
	.logo img {
		width: 170px;
	  }
	  .column.fixed {
		font-size: 10px;
	}

	#section-tools{
		padding: 20px 15px !important;
	}
		.section {
		/* justify-content: center; */
		padding: 50px 50px;
		}


		#section-tools h2 span{
			display: inline;
			
		}

		#section-tools h2{
			text-align: left;
			font-size: 1em !important;
		  }
	
		.text-container h1 {
		font-size: 3.5em;
		margin-right: 20px; /* Space between elements */
		}
	
		.text-container h1:last-child {
		margin-right: 0; /* Remove margin for the last element */
		}
	
	@media screen and (min-width: 1200px) {
		.section {
		justify-content: center;
		}
	
		.text-container {
		display: flex;
		justify-content: center;
		max-width: none; 
		width: 100%;
		}
	
		.text-container h1 {
		margin-right: 20px; /* Space between elements */
		display: inline;

		}
	
		.text-container h1:last-child {
		margin-right: 0; /* Remove margin for the last element */
		}
	}
  }


  #section-tools {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px 20px;
	background-color: #ffffff;
	text-align: center;
	cursor: pointer;
  }

  
  #section-tools h2 {
	font-size: 1.5em;
	color: #3D69A5;
	margin-bottom: 40px;
  }
  
  #tool-container {
	display: flex;
	justify-content: center;
	gap: 40px;
  }
  
  .tool-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 300px;
	/* height: 300px; */
	padding: 20px;
	margin: 5px;
	border: 4px solid #3D69A5;
	border-radius: 4px;
	text-align: center;
	background-color: #f8f5f5;
	transition: transform 0.5s ease-in-out; /* Smooth transition for hover effect */

  }
  
  .tool-box img {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	transition: transform 0.5s ease-in-out; /* Smooth transition for image */

  }
  
  .tool-title {
	font-size: 1.6em;
	font-weight: bold;
	color: #3D69A5;
	margin-bottom: 10px;
  }
  
  .tool-description {
	font-size: 1em;
	color: #6e6e6e;
	text-align: left;
	padding: 0 20px !important;
  }
  .tool-box:active {
	background-color: #3D69A5; 
  }
  .tool-box:active div {
	color: white !important;
  }
  .tool-box:hover img {
	transform: rotate(180deg); /* Rotate image on hover */
  }
  
  
  @media screen and (max-width: 768px) {
	#tool-container {
	  flex-direction: column;
	  gap: 20px;
	}
  }
  /* X PROGRESS  */
  .progress-container {
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #e0e0e0; /* Light gray background */
	overflow: hidden;
	height: 40px;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 6;
	padding-top: env(safe-area-inset-top);

}

  .progress-bar {
	display: flex;
	font-size:1.5rem;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: white;
	font-weight: bold;
	transition: width 0.5s ease-in-out;
	position: relative;
}

.progress-stage-1 {
	background-color: #3D69A5; /* Blue color */
	width: 33.33%;
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%); /* 45-degree cut */
}

.progress-stage-2 {
	background-color: #3D69A5; /* Blue color */
	width: 33.33%;
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%); /* 45-degree cut */
}

.progress-stage-3 {
	background-color: #3D69A5; /* Blue color */
	width: 33.33%;
}

.progress-bar:not(.active) {
	background-color: transparent;
	color: #e0e0e0;
}


.progress-bar.done {
	background-color: transparent;
	background-color: #3D69A5; /* Blue color for text when not active */
	color: #3D69A5;
	clip-path: none !important;
}

.progress-text {
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	
}











 /* X FOOTER  */
  .footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background-color: #F6F6F6;
	color: #777; /* White text color */
	text-align: center;
	/* position: absolute; */
	/* bottom:0px; */
	width: 100%;
  }
  
  .footer h3 {
	font-style: italic;
	font-size: 1.2em;
	font-weight: normal;
	margin: 0 0 10px 0;
	color: #777 !important;
  }
  
  .footer p {
	font-size: .8em;
	text-align: left;;
	margin: 0;
	max-width: 1000px; /* Set a max-width for better readability */
  }
  
 /* X PDF  */

  .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	overflow: hidden;
	display: none; /* Hidden by default */
	z-index: 1000; /* Ensure it sits on top */
}

.overlay-content {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.overlay-content iframe{
	border: none;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 30px;
	font-size: 42px;
	cursor: pointer;
	color: #333;
}
#pdf-canvas {
	width: 100%;
	height: auto;
  }
 /* X SELECTIONS  */
#selection-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;

  }

  .selection-card {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px 20px 30px 20px;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
	max-width: 1000px;
	margin: 20px auto;
	width: 100%;
  }
  
  .selection-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
  }
  
  .selection-number {
	position: relative;
  }
  
  .selection-circle {
	width: 30px;
	height: 30px;
	background-color: #3D69A5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin-right: 10px;
	transition: background-color 0.3s ease;
  }
  
  .selection-circle.selected {
	background-color: green;
  }
  
  .selection-circle.selected::before {
	content: '\e876'; /* Material Icon for check */
	font-family: 'Material Icons';
	position: absolute;
	top: 0;
	left: -9px;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .selection-title {
	font-size: 1.5em;
	font-weight: bold;
  }
  
  .selection-content {
	display: flex;
	flex-wrap: wrap;
	/* flex-direction: column;  */
	gap: 10px;
  }
  
  .desc-text {
	font-size: 1em;
	color: #666;
	margin-top:0;
	margin-bottom: 20px;
  }
/* X BUTTON */
  .option-button  {
	background-color: white;
	color: #3D69A5;
	border: 3px solid #82AEDC;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-weight: bold;
	align-self: flex-start;
	text-transform: uppercase;
  }

  .option-button:hover {
	border-color: #3D69A5;
  }
  
  .option-button.selected {
	background-color: #3D69A5;
	color: white;
  }
  
/* X DROPDOWN */

  .option-dropdown {
	background-color: white;
	appearance: none;
	width: 100%;
	color: #3D69A5;
	font-weight: bold;
	border: 3px solid #5f91bd;
	border-radius: 0px;
	padding: 10px;
	cursor: pointer;
	transition: border-color 0.3s ease;
	align-self: flex-start; /* Keep dropdown aligned to the start */
	font-size: 1.2em; /* Larger font size */
	height: 50px;
	padding-right: 30px; /* Space for custom arrow */
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0 L5 6 L10 0 Z" fill="%235f91bd"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px 5px;
	max-width: 500px;
  }
  
  .option-dropdown:hover {
	border-color: #4a76a8;
  }

.select-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	/* max-width: 300px; */
  }
  
  .option-dropdown:hover {
	border-color: #4a76a8;
  }
  
/* X TEXTBOX */
  .type-text {
	background-color: white;
	color: #3D69A5;
	border: 3px solid #82AEDC;
	border-radius: 5px;
	padding: 10px 20px;
	transition: background-color 0.3s ease;
	font-weight: bold;
	align-self: flex-start;
	text-transform: uppercase;
	width: 120px; /* Set a fixed width */
	text-align: center; /* Center the text */
  }

   /* Hide incrementers for Chrome, Safari, Edge, and Opera */
   input[type="number"]::-webkit-outer-spin-button,
   input[type="number"]::-webkit-inner-spin-button {
	   -webkit-appearance: none;
	   margin: 0;
   }

   /* Hide incrementers for Firefox */
   input[type="number"] {
	   -moz-appearance: textfield;
   }
  
  .type-text:focus {
	border-color: #4a76a8;
	outline: none; /* Remove default outline */
  }

/* X NEXT BUTTON */
  .button-container2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	/* height: 100vh; */
  }
  
  .next-button {
	background-color: #4a76a8;
	color: white;
	border: none;
	text-transform: uppercase;
	border-radius: 5px;
	padding: 12px 30px;
	font-size: 1.3em;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center; /* Center text and icon */
	min-width: 300px; /* Minimum width for the button */
	gap: 10px;
	transition: background-color 0.3s ease;
  }
  
  .next-button:hover {
	background-color: #4a76a8;
  }
  
  .next-button i.material-icons {
	font-size: 1.5em;
  }


  table.resultTable tbody tr:nth-child(odd) {
    background-color: #dedddd; /* Light gray background */
}

tr{
	border-bottom: none;
}

th{
	font-size: 1.5em;
}
.dataTable th{
	font-size: 1em !important;
}

@media print {
	.header{
		position: relative;
		top: 100px;
	}
	
	.resultTable{
		position: relative;
		top: -400px;
	}

	#card-section-header{
		position: relative;
		top: -280px;
	}
  }

#item-notes{
	margin: 20px 25px 40px 25px;
    line-height: 2;
	text-align: left;
}

#tool-container2{
	display: flex;
    /* gap: 20px; */
}

#tool-container2 .card2 {
    
    width: 300px;
    text-align: center;
}

#tool-container2 .icon2 {
    width: 300px;
    text-align: center;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

#tool-container2 .icon2 img {
    width: 90%;
    height: 90%;
	border: 4px solid #3D69A5;
    border-radius: 5px;
	background-color: #F6F6F6;
	padding: 25px;
}

#tool-container2 .h2{
	font-size: 1.8em;
	font-weight: bold;
	color: #3D69A5;
	padding: 10px; 

}

#report-notes .h2, #item-notes .h2{
	font-size: 1.5em;
	font-weight: bold;
	color: grey;
	padding: 10px; 
	text-align: center;
}

#report-notes, #item-notes{
	max-width: 1000px;
	margin: 0 auto !important;
	padding: 0 10px;
	text-align: left;
}

#tool-container2 p {
    font-size: 16px;
    color: black;
	padding: 0 10px ;
	margin: 0;
	font-weight: bold;

}

/* Banner styles */
#addToHomeScreen {
	display: flex;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,.85);
    color: white;
	/* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9); */
    padding: 15px;
    text-align: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
	transition: top 1s ease-in-out; /* Smooth animation over 2 seconds */
}

#addToHomeScreen img{
	width: 40px;
	height: 40px;
	position: relative;
	top: 0px;
	border-radius: 6px;
	flex: 0 0 auto;
}

/* #addToHomeScreen text{
	display: inline-block;
	margin: 0 auto;
} */


#addToHomeScreen.visible {
    align-items: center;
    justify-content: space-between;
	top: 0;
}

#addToHomeScreen button {
    background-color: white;
    color: #3D69A5;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
	width: 40px;
	flex: 0 0 auto;
	text-align: center;
}

#addToHomeScreen .text {
	justify-content: center; /* Center content horizontally */
  	align-items: center; /* Center content vertically */
  	text-align: center;
	flex: 1; /* Take up all remaining space */
	display: flex;
}

#addToHomeScreen button {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
}

.content {
    transition: margin-top 0.3s ease;
}

