html, body {
		height: 100%;
		margin: 0;
		padding: 0;

}

.container-fluid.page-body-wrapper {
    min-height: 100vh; /* Ensures it covers full screen */
    display: flex;
    flex-direction: column;
}

.main-panel {
    flex-grow: 1; /* Ensures content pushes container to fill space */
     
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex-grow: 1; /* Ensures content pushes container to fill space */
     /* Ensures the background color is applied */
    padding-top: 40px;
    display: flex;
    flex-direction: column; /* Ensures content grows properly */
}





 a {
		text-decoration: none; /* Removes underline from all links */
}



.button-white {
  background-color: #ffffff;        /* bg-white */
  color: #3B82F6;                   /* text-blue-500 */
  border-width: 1px;                /* border */
  border-style: solid;
  border-color: #3B82F6;            /* border-blue-500 */
  padding: .6rem 1rem;             /* py-2 px-4 */
  border-radius: 1rem;              /* rounded-2xl */
  font-size: 1.0rem;              /* text-sm */
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; /* transition-colors */
  transition-duration: 800ms;       /* duration-800 */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}

.button-white:hover {
  background-color: #3B82F6;        /* hover:bg-blue-500 */
  color: #ffffff;                   /* hover:text-white */
}






.button-blue {
  background-color: #008CFF;        
  color: #FFFFFF;                  
  border-width: 1px;                /* border */
  border-style: solid;
  border-color: #3B82F6;            
  padding: .6rem 1rem;             /* py-2 px-4 */
  border-radius: 1rem;              /* rounded-2xl */
  font-size: 1.0rem;              /* text-sm */
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; /* transition-colors */
  transition-duration: 800ms;       /* duration-800 */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}

.button-blue:hover {
  background-color: #0073d1;        /* hover:bg-blue-500 */
  color: #ffffff;                   /* hover:text-white */
}



.button-gray {
  background-color: #d6d6d6;        /* bg-white */
  color: #5e5e5e;                   /* text-blue-500 */
  border-width: 1px;                /* border */
  border-style: solid;
  border-color: #d9e5ff;            /* border-blue-500 */
  padding: .6rem 1rem;             /* py-2 px-4 */
  border-radius: 1rem;              /* rounded-2xl */
  font-size: 1.0rem;              /* text-sm */
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; /* transition-colors */
  transition-duration: 800ms;       /* duration-800 */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}

.button-gray:hover {
  background-color: #525252;        /* hover:bg-blue-500 */
  color: #ffffff;                   /* hover:text-white */
}






.button-red {
  border-width: 1px;                    /* border */
  border-style: solid;
  border-color: #fecaca;                /* border-red-200 */
  color: #b91c1c;                       /* text-red-700 */
  background-color: #ffffff;        /* bg-white */        
  padding: .6rem 1rem;             /* py-2 px-4 */
  border-radius: 1rem;              /* rounded-2xl */
  font-size: 1.0rem;              /* text-sm */
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; /* transition-colors */
  transition-duration: 800ms;       /* duration-800 */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}

.button-red:hover {
  background-color: #ff8585;            /* hover:bg-red-50 */
  color: #ffffff;                   /* hover:text-white */
}


.button-container {
					display: inline-block;
					position: relative;
					border: 2px solid #EEE; /* Light gray border initially */
					background-color: white;
					border-radius: 10px;
					overflow: hidden;
					text-align: center;
					cursor: pointer;
					transition: all 0.3s ease;
					padding-top: 10px;
					padding-bottom: 60px;
					display: flex;
					width: 100%;
					padding-left: 0px !important;
					text-decoration: none !important;
			}

			.button-container img {
				width: 100px; /* Default size on larger screens */
 height: auto; /* Maintain aspect ratio */
 transition: width 0.3s ease-in-out; /* Smooth transition */
			}

			@media (max-width: 768px) {
							.button-container {
									display: inline-block;
									position: relative;
									width: 90%;
									text-align: center;
									flex-direction: row;
									align-items: center;

							}
							.select-text {
									right: -100px; /* Initially hidden outside the right */
									bottom: auto;
									transition: right 0.3s ease;
							}
							.button-container:hover .select-text {
									right: 0;
							}
							.img-fluid {
									max-width: 70px !important; /* 10% smaller than 100px */
							}
					}

					@media (min-width: 769px) {
							.select-text {
									bottom: -40px; /* Initially hidden below */
									right: auto;
									transition: bottom 0.3s ease;
							}
							.button-container:hover .select-text {
									bottom: 0;
							}

					}

			.doc-text {
					font-size: 20px;
					font-weight: bold;
					color: black;
					transition: color 0.3s ease, transform 0.3s ease;
					position: relative;
					top: 5px;
					text-decoration: none;
			}

			.select-text {
					position: absolute;
					bottom: -40px; /* Initially hidden */
					width: 100%;
					height: 40px; /* Now only 50px */
					background-color: #F55D12; /* Updated orange */
					color: white;
					font-size: 16px;
					font-weight: bold;
					line-height: 40px; /* Center text vertically */
					transition: bottom 0.3s ease;
					text-decoration: none;
					left: 0;
			    z-index: 1; /* Ensures it remains below .forminfo */

			}






			.button-container:hover {
					border-color: #F55D12; /* Change border color on hover */
			}

			.button-container:hover img {
					width: 90px; /* Shrinks slightly when hovered */
			}

			.button-container:hover .doc-text {
					color: #F55D12; /* Change text to new orange */
			}

			.button-container:hover .select-text {
					bottom: 0;
			}


			.status-bar-container {
					 width: 100%; /* Adjust as needed */
					 height: 6px;
					 background-color: #f7f7ff; /* White background */
					 border-radius: 0 6px 6px 0; /* Rounded on right side only */
					 overflow: hidden;
					 position: relative;
			 }

			 .status-bar-fill {
			     width: 0%; /* Starts at 0 to prevent flashing */
			     height: 100%;
			     background-color: #F55D12; /* Orange */
			     border-radius: 0 6px 6px 0;
			     transition: width 0.5s ease-in-out;
			 }


			 /* General image styling */
			 .img-fluid {
					 max-width: 140px; /* Default size */
					 height: auto;
					 transition: max-width 0.3s ease-in-out;
			 }

			 /* Base styling for all input fields */
			 input[type="text"],
			 input[type="email"],
			 select {
			     width: 100% !important;
			     padding: 6px !important;
			     border: 2px solid #CCC !important;
			     border-radius: 6px !important;
			     font-size: 20px !important;
			     transition: all 0.3s ease-in-out !important;
			     background-color: white !important;
			     appearance: none !important;
			     box-sizing: border-box !important;
			 }

			 input[type="email"].form-control {
				 -webkit-appearance: none; /* Removes default styles in Safari & Chrome */
				 -moz-appearance: none; /* Removes default styles in Firefox */
			     appearance: none !important; /* Ensure consistent appearance */
			     -moz-appearance: none !important;
			     -webkit-appearance: none !important;
			     padding: 6px !important;
			     border: 2px solid #CCC !important;
			     border-radius: 6px !important;
			     font-size: 26px !important;
			 }


			 /* Style select dropdown to match text input */
			 select {
					 -webkit-appearance: none; /* Removes default styles in Safari & Chrome */
					 -moz-appearance: none; /* Removes default styles in Firefox */
					 appearance: none; /* Standard way to remove browser styles */
					 background-color: white;
					 padding-right: 40px; /* Space for custom arrow */
					 border: 2px solid #CCC !important;
					 border-radius: 6px;
			 }

			 /* Add custom dropdown arrow */
			 .select-wrapper {
					 position: relative;
					 width: 100%;
			 }

			 .select-wrapper select {
					 width: 100%;
					 padding: 6px;
			 }

			 /* Custom dropdown arrow */
			 .select-wrapper::after {
					 content: "▼"; /* Custom dropdown arrow */
					 font-size: 26px;
					 color: #999;
					 position: absolute;
					 top: 50%;
					 right: 15px;
					 transform: translateY(-50%);
					 pointer-events: none;
			 }

			 /* Change border to orange when focused */
			 input:focus, select:focus {
					 border-color: #F55D12 !important;
					 box-shadow: none !important;
					 outline: none !important;
			 }

			 /* Change placeholder text color */
			 input::placeholder {
					 color: #EEE !important;
			 }

			 /* Ensure consistent height */
			 input, select {

					 line-height: 1.5;
					 box-sizing: border-box;
			 }




			 /* Make all checkboxes use your blue */
input[type="checkbox"]{
  accent-color: #008CFF;
}

/* Optional: matching focus ring */
input[type="checkbox"]:focus-visible{
  outline: 2px solid #008CFF;
  outline-offset: 2px;
}

			 /* Default button styling - White background with orange border */
			 .btn-orange {
					 background-color: white !important;
					 border: 2px solid #F55D12 !important;
					 color: #F55D12 !important;
					 font-size: 18px !important;
					 font-weight: bold !important;
					 padding: 12px;
					 border-radius: 6px;
					 width: 100%;
					 transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
			 }

			 /* Hover effect - Orange background with white text */
			 .btn-orange:hover,
			 .btn-orange:focus {
					 background-color: #F55D12 !important;
					 color: white !important;
					 border-color: #F55D12 !important;
			 }


        /* Custom styled textbox */
        .textbox-orange {
            width: 100%;
            height: 200px; /* Set height to 100px */
            padding: 15px;
            border: 2px solid #CCC;
            border-radius: 6px;
            font-size: 26px;
            color: #333;
            background-color: white;
            transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
            resize: none; /* Prevents resizing */
        }

        /* Placeholder color */
        .textbox-orange::placeholder {
            color: #EEE !important;
        }

        /* Focus effect - Orange background with white text */
        .textbox-orange:focus {
            border-color: #F55D12 !important;
            outline: none;
        }

        /* Ensure text remains visible when typing */
        .textbox-orange:focus::placeholder {
            color: white !important;
        }



				.tooltip-inner {
						background-color: #0d6efd!important;
						color: #fff ;
				}

				.bs-tooltip-bottom .arrow::before,
				.bs-tooltip-auto[x-placement^="top"] .arrow::before {
						border-bottom-color: #0d6efd!important;
				}




				.drop-zone {
						background-color: white;
						border: 2px dashed #CCC;
						border-radius: 8px;
						cursor: pointer;
						transition: border 0.3s ease-in-out;
				}

				.drop-zone:hover,
				.drop-zone.drag-over {
						border-color: #666;
				}

				.drop-label {
						display: block;
						font-size: 18px;
						font-weight: bold;
						color: #555;
						padding: 10px;
				}

				/* Ensures file name is left-aligned and file size is right-aligned */
				.list-group-item {
						display: flex;
						justify-content: space-between;
				}

				.forminfo {
				    max-height: 0; /* Initially hidden */
				    overflow: hidden;
				    opacity: 0;
				    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
				    text-align: center;
				    font-style: italic;
						font-size: 14px;
				    color: black;
				    padding: 0;
				}

			.prepaid-button:hover ~ .forminfo {
			    max-height: 50px; /* Adjust based on content */
			    opacity: 1;
			    padding: 10px 0;
			}



			table tr#status {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; vertical-align: middle;}
			table td#yellow {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; background-image: linear-gradient(to right , #007EFC, #449DF7); }
			table td#green {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; background-color:#73F386; vertical-align: middle; }
			table td#white {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; background-color:#F2F2F2; vertical-align: middle; }
			table td#separate {border-bottom:solid 6px; border-top:solid 3px; border-bottom-color:#FFF; border-top-color:#FFF; background-color:#666; vertical-align: middle; padding: 1px;}
			table td#red {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; background-color:#F48063;}
			table td#header {border-bottom:solid 0px; border-top:solid 0px; border-bottom-color:#FFF; border-top-color:#FFF; background-color:#95C9FC; vertical-align: middle;}

			[data-href] {
			    cursor: pointer;
			}


			.blink {
			    animation: blink 2s steps(2, start) infinite;
			    -webkit-animation: blink 2s steps(2, start) infinite;
			  }
			  @keyframes blink {
			    to {
			      visibility: hidden;
			    }
			  }
			  @-webkit-keyframes blink {
			    to {
			      visibility: hidden;
			    }
			  }

			  #results {
			    position: absolute;
			    top: 100%;
			    left: 0;
			    right: 0;
			    background: white;
			    border: 1px solid #ccc;
			    z-index: 9999;
			    max-height: 800px;
			    overflow-y: auto;
			    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			  }
			  .result-item {
			    padding: 10px;
			    cursor: pointer;
			    border-bottom: 1px solid #eee;
			  }
			  .result-item:hover {
			    background-color: #f1f1f1;
			  }

				.search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

#search-box {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
}






.tooltipTCV {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted #133B63;
}
ul.tooltipTCVa {
	margin: 5px;
	padding: 5px;
	list-style-position: inside;
	}

.tooltipTCV .tooltiptextTCV {
	visibility: hidden;
	 width: 220px;
	 background-color: #0085E7;
	 color: #fff;
	 text-align: left;
	 border-radius: 6px;
	 padding: -10px 0;
	 position: absolute;
	 z-index: 1;
	 bottom: 150%;
	 left: 50%;
	 margin-left: -110px;
 }

 .tooltipTCV .tooltiptextTCV::after {
	 content: "";
	 position: absolute;
	 top: 100%;
	 left: 50%;
	 margin-left: -10px;
	 border-width: 5px;
	 border-style: solid;
	 border-color: #0085E7 transparent transparent transparent;
 }

.tooltipTCV:hover .tooltiptextTCV {
	visibility: visible;
}





	.imessage {
		background-color: #fff;
		display: flex;
		flex-direction: column;
		font-family: \"Roboto\";
		font-size: 1.00rem;
		margin: 0;
		max-width: 600px;
		padding: 0;
	}

	.imessage p {
		border-radius: 1.15rem;
		line-height: 1.25;
		max-width: 75%;
		padding: 0.5rem .875rem;
		position: relative;
		word-wrap: break-word;
	}

	.imessage p::before,
	.imessage p::after {
		bottom: -0.1rem;
		content: "";
		height: 1rem;
		position: absolute;
	}

	p.from-me {
		align-self: flex-end;
		background-color: #248bf5;
		color: #fff;
	}

	p.from-me::before {
		border-bottom-left-radius: 0.8rem 0.7rem;
		border-right: 1rem solid #248bf5;
		right: -0.35rem;
		transform: translate(0, -0.1rem);
	}

	p.from-me::after {
		background-color: #fff;
		border-bottom-left-radius: 0.5rem;
		right: -40px;
		transform:translate(-30px, -2px);
		width: 10px;
	}

	p.from-me-failed {
		align-self: flex-end;
		background-color: #FF0000;
		color: #fff;
	}

	p.from-me-failed::before {
		border-bottom-left-radius: 0.8rem 0.7rem;
		border-right: 1rem solid #FF0000;
		right: -0.35rem;
		transform: translate(0, -0.1rem);
	}


	p.from-me-failed::after {
		background-color: #fff;
		border-bottom-left-radius: 0.5rem;
		right: -40px;
		transform:translate(-30px, -2px);
		width: 10px;
	}

	p[class^="from-"] {
		margin: 0.5rem 0;
		width: fit-content;
	}

	p.from-me ~ p.from-me {
		margin: 0.25rem 0 0;
	}

	p.from-me ~ p.from-me:not(:last-child) {
		margin: 0.25rem 0 0;
	}

	p.from-me ~ p.from-me:last-child {
		margin-bottom: 0.5rem;
	}

	p.from-them {
		align-items: flex-start;
		background-color: #e5e5ea;
		color: #000;
	}

	p.from-them:before {
		border-bottom-right-radius: 0.8rem 0.7rem;
		border-left: 1rem solid #e5e5ea;
		left: -0.35rem;
		transform: translate(0, -0.1rem);
	}

	p.from-them::after {
		background-color: #fff;
		border-bottom-right-radius: 0.5rem;
		left: 20px;
		transform: translate(-30px, -2px);
		width: 10px;
	}

	p[class^="from-"].emoji {
		background: none;
		font-size: 2.5rem;
	}

	p[class^="from-"].emoji::before {
		content: none;
	}

	.no-tail::before {
		display: none;
	}

	.margin-b_none {
		margin-bottom: 0 !important;
	}

	.margin-b_one {
		margin-bottom: 1rem !important;
	}

	.margin-t_one {
		margin-top: 1rem !important;
	}



	span.tcvcircle {
		background: #FFF;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		color: #133B63;
		display: inline-block;
		font-weight: bold;
		line-height: 30px;
		margin-right: 5px;
		text-align: center;
		width: 30px;
		font-size: 1.7rem;
		font: TCV;
	}
	a {
		color: #0085E7;
		text-decoration: none;
	}


	.questionnaire-row-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: start;
}

.questionnaire-field-dynamic {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* bottom-justify content */
}

.questionnaire-field-dynamic label {
  display: flex;
  align-items: flex-end;     /* text aligned to bottom */
  height: 100%;
  margin-bottom: 0.4rem;
  word-break: break-word;
  transition: color 0.2s ease;
  cursor: pointer;
}

.questionnaire-field-dynamic input:focus,
.questionnaire-field-dynamic select:focus {
  outline: 2px solid #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.questionnaire-field-dynamic label:hover {
  color: #007bff;
}


.questionnaire-field-dynamic input.is-invalid,
.questionnaire-field-dynamic select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.questionnaire-field-dynamic .invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}


.questionnaire-field-dynamic select,
.questionnaire-field-dynamic input {
  width: 100%;       /* ensures full column width */
  box-sizing: border-box;
	 flex-shrink: 0;
}

.form-select,
.form-control {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  height: auto;
}



.toggle-target {
  transition: all 0.3s ease;
  overflow: hidden;
}

.toggle-target.hidden {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

.toggle-target.visible {
  opacity: 1;
  max-height: 1000px; /* large enough for content */
}


.accordion-button {
	box-shadow: none !important;
}

.accordion-button.collapsed {
  color: #008CFF !important;
		font-size: 22px;
			box-shadow: none !important;
}

.accordion-button.collapsed i {
  color: #008CFF !important;
		box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
		font-size: 22px;
	background-color: #008CFF !important;
	color: white !important;
	box-shadow: none !important;
}


.dropzone-style.drag-over {
    border: 2px dashed #007bff;
    background-color: #e9f5ff !important;
}

.drag-over {
    background-color: #cce5ff !important;
    border-color: #66afe9 !important;
}


[data-open] > div.absolute {
    display: none !important;
}


.text-vaultblue {
    color: #008CFF;
	font-weight: 500;
	text-decoration-style: dashed;
}


.text-vaultblue {
    color: #008CFF;
	font-weight: 500;
	text-decoration-style: dashed;
}

.text-vaultorange {
    color: #fd790c;
	font-weight: 500;
}

.fine-dashed-underline {
    border-bottom: 1px dashed #008CFF;
    padding-bottom: 1px;
    line-height: 1.2;
}

.widgets-icons {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
    font-size: 26px;
    border-radius: 10px;
}

.bg-light-success {
    background-color: rgb(23 160 14 / .11) !important;
}
.text-success {
    color: #15ca20 !important;
}


.text-secondary {
    color: #6c757d !important;
	letter-spacing: .5px;
	font-size: 16px;
}

.bg-light-danger {
	background-color: rgb(244 17 39 / .11)!important
}

.bg-light-info {
	background-color: rgb(13 202 240 / 18%)!important
}

.bg-light-primary {
	background-color: rgb(13 110 253 / .11)!important
}


.shadow-blue-hover {
  transition: box-shadow 0.2s ease-in-out;

  &:hover {
    box-shadow: 0 .5rem 1rem rgba(10, 103, 180, 0.5) !important;
  }
}


.shadow-black {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

[x-cloak] {
    display: none !important;
}

.toast-global {
    position: fixed !important;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}


.bg-has-file {
    background-color: #d4edda;
}

.bg-missing-file {
    background-color: #f8d7da;
}
