﻿
body, html {
	/*height: 100%; BREAKS MAINTAIN SCROLL POSITION*/
	font-size: 16px;
	font-family: Poppins;
	overflow-x: hidden; /* Prevents horizontal scrollbar */
	padding-top: 0;
	background-color: #003300;
	/*	color: #ffffff;*/
	text-align: left;
}



/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges
this was default in project, kill it 
.body-content {
	   margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set widths on the form inputs since otherwise they're 100% wide
WTF, THEY LEFT THIS input the DEFAULT PROJECT  */
/*input,
select,
textarea {
    max-width: 280px;
}*/


/* Responsive: Portrait tablets and up */
/*@media screen and (min-width: 768px) {
	.body-content {
		padding: 0;
	}
}*/

.imgGIBill {
	max-width: 150px;
}

.pl-10px {
	padding-left: 10px;
}


.paragraph {
	color: black;
	background-color: white;
	padding-right: 50px;
	padding-left: 50px;
	padding-bottom: 20px;
	padding-top: 20px;
	text-align: left;
}

.form-group-width-anho {
	width: 60%;
}


@media (Max-width: 769px) {
	.paragraph {
		color: black;
		background-color: white;
		padding-right: 10px;
		padding-left: 10px;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.form-group-width-anho {
		width: 95%;
	}
}




.paragraph2 {
	/*	font-family: Verdana, Arial;*/
	background-color: white;
	padding-right: 1px;
	padding-left: 1px;
	padding-bottom: 20px;
	padding-top: 20px;
}

.paragraph_heading {
	font-size: x-large;
	color: #B99311;
}



a:link {
	text-decoration: underline;
}

a:visited {
	text-decoration: underline;
}

a:active {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

.navbar a,
.navbar .nav-link {
	text-decoration: none !important;
}

.input-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 20px;
}

.GridViewStyle td {
	border-left: 1px solid #999;
	padding-left: 8px;
	padding-right: 8px;
}

.GridViewStyle th {
	border-left: 1px solid #999;
	background-color: lightcyan;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
}

.GridViewStyle {
	border-collapse: collapse;
	/**/ border: 1px solid red;
	*/
}

@media (min-width: 916px) {
	.display-hide-button-when-not-mobile {
		display: none;
	}
}

.x-small_white {
	cursor: hand;
	font-size: x-small;
	color: white;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
}

.xx-small_white {
	font-size: xx-small;
	color: white;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
}

A.xx-small_white:link {
	color: white;
}

A.xx-small_white:visited {
	color: white;
}

A.xx-small_white:active {
	color: white;
}

A.xx-small_white:hover {
	color: white;
}

/* handle for labels in floating textbox input*/
/* (javascript needed too) */
/* Base style to allow growth */
.responsive-floating .form-control {
	padding-top: 1.5rem; /* Default top padding for single-line label */
	transition: height 0.2s ease;
	min-height: 3.5rem; /* Minimum height for typical input */
}

.eye-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem 0.5rem;
	line-height: 1;
	height: auto;
}

	.eye-toggle-btn i {
		font-size: 1.1rem;
		line-height: 1;
	}


/* Hide Edge's built-in password reveal and clear buttons */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
	display: none;
}

/* Hide password toggle button in WebKit browsers (Chrome, Safari) */
input[type="password"]::-webkit-password-toggle-button {
	display: none;
}

.form-floating label {
	white-space: normal !important;
	overflow-wrap: break-word;
}



/* Student programs */
/* Ensure wrapper itself is block-level */

.option-box {
	border: 1px solid #ced4da;
	border-radius: .25rem;
	padding: .75rem 1rem;
}

.cbl-programs {
	display: block;
}

	.cbl-programs > span {
		display: flex;
		align-items: center;
		gap: 1.5rem;
		padding: .4rem 0;
		min-height: 44px;
	}

	.cbl-programs input[type="checkbox"] {
		margin-right: .25rem;
		vertical-align: middle;
	}

	.cbl-programs label {
		display: inline-block;
		vertical-align: middle;
		margin: 0;
	}

	.cbl-programs input[type="checkbox"] + label {
		margin-left: .25rem;
	}

	.cbl-programs input[type="checkbox"]:focus-visible {
		outline: none;
		box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
		border-radius: .25rem;
	}



/* Align checkboxes with their label text */
.option-box .form-check-input {
	vertical-align: middle !important;
	margin-top: 0.2rem !important; /* tweak until perfectly centered */
}

/* Multi-line support for floating labels */
.form-floating.long-label > label {
	white-space: normal; /* allow wrapping */
	height: auto; /* let label grow */
	overflow: visible;
	text-overflow: clip;
	line-height: 1.25;
}

/* Make room for ~2 lines of label above the text */
.form-floating.long-label > .form-control {
	padding-top: calc(.75rem + 2.4em); /* tweak if your label is longer */
	min-height: 3.75rem; /* keep field tall enough */
}

	/* Once it "floats", keep the tiny label on one line */
	.form-floating.long-label > .form-control:focus ~ label,
	.form-floating.long-label > .form-control:not(:placeholder-shown) ~ label {
		white-space: nowrap;
	}

@media (max-width: 576px) {
	.form-floating.long-label > .form-control {
		padding-top: calc(.75rem + 3.6em); /* room for ~3 lines */
	}
}


@media (max-width: 576px) {
	.fw-bold.text-secondary {
		margin-bottom: 2px;
	}
}

/* Paragraph text blocks: lists + spacing */
.paragraphtext ol,
.paragraphtext ul,
.paragraphtext + ol,
.paragraphtext + ul {
	padding-left: 1.25rem; /* indent bullets/numbers */
	margin-bottom: 1rem; /* space after the whole list */
}

	/* List items spacing */
	.paragraphtext li,
	.paragraphtext + ol > li,
	.paragraphtext + ul > li {
		margin-bottom: 0.75rem; /* space between items */
	}

	/* Nested lists: extra indent and controlled spacing */
	.paragraphtext ol ol,
	.paragraphtext ul ul,
	.paragraphtext ol ul,
	.paragraphtext ul ol,
	.paragraphtext + ol ol,
	.paragraphtext + ul ul,
	.paragraphtext + ol ul,
	.paragraphtext + ul ol {
		margin-top: 0.5rem; /* space before nested list */
		margin-bottom: 0; /* avoid double-stacking */
		padding-left: 1.25rem; /* additional indent for nested lists */
	}

/* Optional: keep numbers/bullets outside content flow for better alignment */
.paragraphtext ol,
.paragraphtext ul,
.paragraphtext + ol,
.paragraphtext + ul {
	list-style-position: outside;
}

/* Optional: headings in th*/


