@charset "utf-8";
/* CSS Document */

/*------------------------------------- Start Sticky Footer -------------------------------------*/
* {
		margin: 0;
		}
	
html, body {
		height: 100%;
		}

.wrapper {
		min-height: 100%;
		height: auto !important;
		height: 100%;
		margin: 0 auto -20px; /* the bottom margin is the negative value of the footer's height */
		overflow-x: hidden; /* Prevent horizontal scrolling */
		}
	
.push {
		height: 20px; /* .push must be the same height as .footer */
		clear: both;
		}

.footer {
		height: 20px; /* .push must be the same height as .footer */
		clear: both;
		color: #999 !important; /* Lighten the footer text color */
		}
	
.footer div {
		color: #999 !important; /* Ensure footer div inherits the lighter color */
		}
		
/* Override any general div styling for footer content */
.footer div[align="center"] {
		color: #999 !important; /* Force lighter color for centered footer text */
		}
		
/* New specific footer text color rule */
.footer-text {
		color: #999 !important;
		font-size: 11px;
		}

/* Footer link styles */
.footer-text a {
		color: #666 !important;
		text-decoration: none;
		font-size: 11px !important;
		}

.footer-text a:hover {
		color: #333 !important;
		text-decoration: underline;
		font-size: 11px !important;
		}

/*------------------------------------- End Sticky Footer by Ryan Fait http://ryanfait.com -------------------------------------*/


body {
		margin: 0;
		background-color: #F5F5F5;
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		}

a {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		color: #003399; 
		font-style: normal; 
		text-decoration: none; 
		}

h1 {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		font-size: 14px;
		color: #333;
		font-style: normal;
		text-decoration: none;
		font-weight: bold;
		text-align: left;
		padding: 0 10px 0 5px;
		}

h2 {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		font-size: 14px;
		color: #CCC;
		font-style: normal;
		text-decoration: none;
		font-weight: bold;
		text-align: left;
		padding: 15px 0 3px 0;
		}

a:visited {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		color: #003399; 
		font-style: normal; 
		text-decoration: none; 
		}

/* Legal document styles */
.legal-document {
		max-width: 800px;
		margin: 20px auto;
		padding: 20px;
		background: white;
		border-radius: 5px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		}

.legal-document h1 {
		color: #333;
		border-bottom: 2px solid #003399;
		padding-bottom: 10px;
		margin-bottom: 20px;
		}

.legal-document h2 {
		color: #003399;
		margin-top: 30px;
		margin-bottom: 15px;
		}

.legal-document h3 {
		color: #666;
		font-size: 13px;
		margin-top: 20px;
		margin-bottom: 10px;
		}

.legal-document ul {
		margin: 10px 0 10px 20px;
		}

.legal-document li {
		margin-bottom: 5px;
		line-height: 1.4;
		}

/* Legal page specific styles */
.legal-policy-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
		margin: 30px 0;
		}

.policy-card {
		background: #f9f9f9;
		padding: 20px;
		border-radius: 5px;
		border: 1px solid #9DC45F;
		border-left: 30px solid #9DC45F;
		}

.policy-card h2 {
		margin-top: 0;
		}

.policy-card h2 a {
		color: #003399;
		text-decoration: none;
		}

.policy-card h2 a:hover {
		text-decoration: underline;
		}

.policy-highlights {
		background: white;
		padding: 15px;
		border-radius: 3px;
		margin: 15px 0;
		}

.policy-highlights ul {
		margin: 10px 0 0 0;
		}

.policy-link {
		font-weight: bold;
		color: #003399;
		}

.legal-summary {
		margin: 40px 0;
		padding: 20px;
		background: #f0f0f0;
		border-radius: 5px;
		}

.summary-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
		margin-top: 20px;
		}

.summary-item {
		background: white;
		padding: 15px;
		border-radius: 3px;
		}

.summary-item h3 {
		margin-top: 0;
		color: #003399;
		}

.legal-updates {
		margin: 30px 0;
		padding: 20px;
		background: #f9f9f9;
		border-radius: 5px;
		border: 1px solid #9DC45F;
		border-left: 30px solid #9DC45F;
		}

.contact-info {
		margin: 30px 0;
		padding: 20px;
		background: #f0f0f0;
		border-radius: 5px;
		}

.contact-methods {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 20px;
		margin-top: 15px;
		}

.contact-method {
		background: white;
		padding: 15px;
		border-radius: 3px;
		}

/* Legal page header styles - reuses existing site colors and fonts */
.legal-header {
		background: #f8f9fa;
		border-bottom: 1px solid #ddd;
		padding: 15px 0;
		margin-bottom: 0;
		}

.legal-header-content {
		max-width: 840px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}

.legal-logo {
		display: flex;
		align-items: center;
		}

.legal-logo img {
		height: 40px;
		width: auto;
		max-width: 200px;
		}

/* Mobile responsive logo */
@media (max-width: 768px) {
		.legal-logo img {
				height: 35px;
				max-width: 150px;
		}
}

/* Mobile responsive table handling */
@media screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: auto !important; /* Allow horizontal scrolling on mobile - override base hidden */
    }
    
    #contentbody {
        width: 100%;
        max-width: 100vw;
        overflow-x: auto;
    }
    
    .content-column {
        overflow-x: auto; /* Allow horizontal scrolling on mobile */
        overflow-y: visible;
    }
    
    #grid {
        overflow-x: auto; /* Allow horizontal scrolling on mobile */
    }
    
    table[data-grid] {
        min-width: 100%;
        display: table;
        width: auto; /* Allow table to expand beyond container width */
    }
    
    table[data-grid] thead,
    table[data-grid] tbody {
        display: table-header-group;
    }
    
    table[data-grid] tbody {
        display: table-row-group;
    }
    
    table[data-grid] tr {
        display: table-row;
    }
    
    table[data-grid] th {
        display: table-cell;
        white-space: nowrap; /* Headers stay on one line */
        padding: 10px 12px;
        vertical-align: middle;
        /* Headers determine minimum column width */
    }
    
    table[data-grid] td {
        display: table-cell;
        white-space: nowrap; /* Data cells stay on one line by default */
        padding: 10px 12px;
        vertical-align: middle;
        /* No max-width constraints - let content determine width */
    }
    
    /* Allow word wrapping for the first column (Item Name) data cells only */
    table[data-grid] tbody tr td:first-child {
        white-space: normal;
        word-wrap: break-word;
        /* Remove word-break to prevent letter-by-letter breaking */
        min-width: fit-content; /* Ensure column is at least as wide as header */
    }
}

.legal-nav {
		display: flex;
		gap: 15px;
		align-items: center;
		}

.legal-nav a {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		font-size: 13px;
		color: #003399;
		text-decoration: none;
		}

.legal-nav a:hover {
		text-decoration: underline;
		}

.legal-nav-separator {
		color: #666;
		}

/* Content container for legal pages - extends background */
.content-container {
		background: #F5F5F5;
		min-height: auto;
		padding: 20px;
		}



/* Adjust legal document container to work with header */
.legal-document {
		max-width: 800px;
		margin: 0 auto;
		padding: 20px;
		background: white;
		border-radius: 5px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		}

/* Override h1 styling inside legal documents */
.legal-document > h1:first-child {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		font-size: 18px;
		color: #333;
		font-weight: bold;
		text-align: left;
		padding: 0;
		margin: 0 0 20px 0;
		border-bottom: 2px solid #003399;
		padding-bottom: 10px;
		text-transform: none;
		}

.policy-footer {
		margin-top: 40px;
		padding-top: 20px;
		border-top: 1px solid #ddd;
		font-style: italic;
		color: #666;
		}

a:hover {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		color: #003399; 
		font-style: normal; 
		text-decoration: underline; 
		}
		
a:active {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		color: #003399; 
		font-style: normal; 
		text-decoration: none; 
		}
	
hr {
		height: 1px
		}

div {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		}

td {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		vertical-align: middle;
		background: white;
		}	

blockquote {
		padding: -20px;
		}
	
/*------------------------------------- Block Layout -------------------------------------*/

#header {
		width: 100%;
		float: left;
		background-color: #000;
		padding: 12px 0 0 0 ;
		margin-bottom: 0;
		box-sizing: border-box;
		}

#secondary-nav {
		width: 100%;
		float: left;
		background-color: #777;
		padding: 8px 0 6px 0;
		margin-bottom: 15px;
		}

#secondary-nav-content {
		width: 100%;
		text-align: left;
		}

#secondary-nav-content ul {
		list-style: none;
		margin: 0;
		padding: 0 0 0 20px;
		}

#secondary-nav-content li {
		display: inline;
		padding: 0.3em;
		}

#secondary-nav-content li a {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 12px; 
		font-weight: 100;
		color: #fff; 
		font-style: normal; 
		text-decoration: none; 
		}		

#secondary-nav-content li a:hover {
		text-decoration: underline; 
		}		
  
#secondary-nav-content li:after {
		content: "|";
		padding: 0 0 0 1em;
		color: #999;
		}  
  
#secondary-nav-content li:last-child:after {
		content: "";
		}  
 
#secondary-nav-content li.first {
		padding-left: 0;
		}

.logo {
		padding: 5px; 
	  	}

#navigation {
		width: 100%;
		height: 13px;
		float: left;
		background-image: url('images/menu-background.gif');
		padding: 9px;
		}

#contentbody {
		clear: left; 
		}

#column-wrapper {
		 width: 750px;
		}
	
#form {
		clear: both;  /*------------------------------*/
		padding: 16px 0px 0px 16px;
		margin-bottom: 10px;	
		}

#linkbox {
		float: left;
		padding: 0px 0px 0px 16px;
		margin-bottom: 10px;	
		}
		
#linkbox a {
		padding: 0 0 0 35px;
		}		

#relatedbox {
		float: left;
		width: 150px;
		padding: 11px 0px 10px 16px;
		}

#relatedbox-wide {
		float: left;
		width: 300px;
		padding: 11px 0px 10px 16px;
		}

#grid {
		clear: both;
		padding: 0px 16px 6px 16px;
		}
	

.FormLabel {
		background-color: #FFFFFF;
		padding: 3px 2px 3px 0px;
		color: #666666;
		font-size: 13px;
		text-align: right;
		}

.FormLabelRequired {
		background-color: #FFFFFF;
		padding: 3px 2px 3px 0px;
		color: #990000;
		font-size: 13px;
		text-align: right;
		}

.FormField {
		padding: 2px;
		font-size: 13px;
		}

.header-links {
		padding: 3px 3px 3px 3px;
		}
	
.nowrap {
		white-space: nowrap;
		}


/*---------------------- Nav --------------------------*/


#nav {
		display: flex;
		align-items: center;
		padding-left: 25px;
		}

#nav ul {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		}

#nav li { 
		display: inline-block;
		margin: 0;
		padding: 0.3em;
		}
		
#nav li a {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		font-weight: 100;
		color: #ccc; 
		font-style: normal; 
		text-decoration: none; 
		white-space: normal !important;
		padding: 3px 0 10px 0;
		display: inline-block;
		}
		
#nav li a:hover {
		text-decoration: underline; 
		}		
  
#nav li:after {
		content: "|";
		padding: 0 0 0 1em;
		color: #5C5C5C;
		}  
  
#nav li:last-child:after {
		content: "";
		}  
 
#nav li.first {
		padding-left:0;
		background:none;
		}

#nav li.last {
		padding-right:0;
		}  

/*---------------------- Search --------------------------*/

#search {
		display: block;
		float: right;
		padding: 0 5px 0 0;
		margin: -20px 0 0 0;
		}

#search input {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		font-weight: 100;
		padding: 3px; 
		border: none;
		color: #333; 
		
		border-radius: 2px; 
		-moz-border-radius: 2px; 
		-webkit-border-radius: 2px;  
		}		
		
#search select {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
		font-size: 13px; 
		font-weight: 100;
		color: #333; 
		padding: 2px; 
		border: none;
		
		border-radius: 2px; 
		-moz-border-radius: 2px; 
		-webkit-border-radius: 2px;
		}
		


/*------------------------------------- Buttons -------------------------------------*/

.button-add {
		clear: both;
		float: right;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-border-radius: 5px;
		border: none;
		padding: 10px 25px;
		color: #FFF;
		margin: -10px;
		}

.button-add {
          background: rgb(57, 79, 153); /* this is a blue */
        }

/*---------------------- psuedo buttons --------------------------*/

/* Prevent word wrapping on all pseudo buttons */
.pseudo-button-blue,
.pseudo-button-blue:hover,
.pseudo-button-blue:visited,
.pseudo-button-green,
.pseudo-button-green:hover,
.pseudo-button-green:visited,
.pseudo-button-red,
.pseudo-button-red:hover,
.pseudo-button-red:visited,
.pseudo-button-yellow,
.pseudo-button-yellow:hover,
.pseudo-button-yellow:visited {
	white-space: nowrap; /* Prevent word wrapping */
}

/* Override padding for preview section */
.new-form-row.preview-section {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

/* More specific override for preview section */
form.data-entry.new-form-container .new-form-row.preview-section {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.pseudo-button-blue {
			display: block;
			float: right;
			
			text-align: center;
			border-radius: 5px;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;
			
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			white-space: nowrap; /* Prevent word wrapping */
			
			background-image: -ms-linear-gradient(top, #4A63B8 0%, #394F99 100%); /* IE10 Consumer Preview */
			background-image: -moz-linear-gradient(top, #4A63B8 0%, #394F99 100%); /* Mozilla Firefox */
			background-image: -o-linear-gradient(top, #4A63B8 0%, #394F99 100%);  /* Opera */
			background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4A63B8), color-stop(1, #394F99));  /* Webkit (Safari/Chrome 10) */
			background-image: -webkit-linear-gradient(top, #4A63B8 0%, #394F99 100%);  /* Webkit (Chrome 11+) */
			background-image: linear-gradient(to bottom, #4A63B8 0%, #394F99 100%);  /* W3C Markup, IE10 Release Preview */
			}

.pseudo-button-blue:hover {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			white-space: nowrap; /* Prevent word wrapping */
			
			background-image: #394F99;
			background: #394F99;
			}

.pseudo-button-blue:visited {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			white-space: nowrap; /* Prevent word wrapping */
			
			background-image: #394F99;
			background-color: #394F99;
		
		} 

.pseudo-button-green {
			display: block;
			float: right;
			
			text-align: center;
			border-radius: 5px;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;
			
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			white-space: nowrap; /* Prevent word wrapping */
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: -ms-linear-gradient(top, #6FA367 0%, #57892E 100%); /* IE10 Consumer Preview */
			background-image: -moz-linear-gradient(top, #6FA367 0%, #57892E 100%); /* Mozilla Firefox */
			background-image: -o-linear-gradient(top, #6FA367 0%, #57892E 100%);  /* Opera */
			background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6FA367), color-stop(1, #57892E));  /* Webkit (Safari/Chrome 10) */
			background-image: -webkit-linear-gradient(top, #6FA367 0%, #57892E 100%);  /* Webkit (Chrome 11+) */
			background-image: linear-gradient(to bottom, #6FA367 0%, #57892E 100%);  /* W3C Markup, IE10 Release Preview */
			}

.pseudo-button-green:hover {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: #57892E;
			background: #57892E;
			}

.pseudo-button-green:visited {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: #57892E;
			background-color: #57892E;
		}

.pseudo-button-red {
			display: block;
			float: right;
			
			text-align: center;
			border-radius: 5px;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;
			
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: -ms-linear-gradient(top, #c12e2a 0%, #a11f1b 100%); /* IE10 Consumer Preview */
			background-image: -moz-linear-gradient(top, #c12e2a 0%, #a11f1b 100%); /* Mozilla Firefox */
			background-image: -o-linear-gradient(top, #c12e2a 0%, #a11f1b 100%);  /* Opera */
			background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c12e2a), color-stop(1, #a11f1b));  /* Webkit (Safari/Chrome 10) */
			background-image: -webkit-linear-gradient(top, #c12e2a 0%, #a11f1b 100%);  /* Webkit (Chrome 11+) */
			background-image: linear-gradient(to bottom, #c12e2a 0%, #a11f1b 100%);  /* W3C Markup, IE10 Release Preview */
			}
        
.pseudo-button-red:hover {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: #c12e2a;
			background: #c12e2a;
			}
        
.pseudo-button-red:visited {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: -ms-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
            background-image: -moz-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
            background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), color-stop(1, #c12e2a));
            background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
            background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
            text-decoration: none;
            color: #FFF !important;
		}		
		
.pseudo-button-yellow {
			display: block;
			float: right;
			
			text-align: center;
			border-radius: 5px;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;
			
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: -ms-linear-gradient(top, #eea236 0%, #d58512 100%);
			background-image: -moz-linear-gradient(top, #eea236 0%, #d58512 100%);
			background-image: -o-linear-gradient(top, #eea236 0%, #d58512 100%);
			background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eea236), color-stop(1, #d58512));
			background-image: -webkit-linear-gradient(top, #eea236 0%, #d58512 100%);
			background-image: linear-gradient(to bottom, #eea236 0%, #d58512 100%);
		}
        
.pseudo-button-yellow:hover {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: #d58512;
			background: #d58512;
		}

.pseudo-button-yellow:visited {
			display: block;
			float: right;

			text-align: center;
			border-radius: 5px;
			border: 10;
			border-radius: 5px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border: none;
			padding: 7px 25px;
			margin: -5px -7px;

			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
			font-size: 13px;
			color: #FFF;
			line-height: 1.42857143; /* Bootstrap's version of "font-size: 62.5%;" */
			font-weight: normal;
			text-decoration: none;
			
			background-image: #d58512;
			background-color: #d58512;
		}		    



/*------------------------------------- Data Entry -------------------------------------*/

.generic-content-box {
	width: 300px;
	background: #FFF;
	padding: 30px 30px 20px 30px;
	border:1px solid #9DC45F;
	color: #666;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
		}
		
.data-entry {
    width: 300px;
    background: #FFF;
    padding: 20px 30px 30px 30px;
    border:1px solid #9DC45F;
    color: #666;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.data-entry h1 {
		padding: 10px 0px 10px 20px;
		display: block;
		margin: -30px -30px 10px -30px;
		color: #FFF;
		background: #9DC45F;
		border-radius: 5px 5px 0px 0px;
		-webkit-border-radius: 5px 5px 0px 0px;
		-moz-border-radius: 5px 5px 0px 0px;
		border-bottom:1px solid #89AF4C;
		font-size: 16px;			
		}

.data-entry h1 span {
		display: block;
		font-size: 9px;
		font-weight:100;
		color: #FFF;
		}

.data-entry .button {
		background-color: #9DC45F;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-border-radius: 5px;
		border: none;
		padding: 10px 25px 10px 25px;
		color: #FFF;
		text-shadow: 1px 1px 1px #949494;
		}

.data-entry .button:hover {
		/*background: #CF7A7A*/
		background-color:#80A24A;
		}



/*------------------------------------- data-grid -------------------------------------*/


table[data-grid] {
		border: 1px solid #9DC45F;
		border-collapse: separate;
		border-left: 0;
		border-radius: 5px;
		border-spacing: 0px;
		}

table[data-grid] thead {
		display: table-header-group;
		vertical-align: middle;
		border-color: inherit;
		border-collapse: separate;

		background-color: #9DC45F;
		/* gradient
		background-image: -webkit-linear-gradient(top,#B7DB7D,#9DC45F);
		background-image: linear-gradient(to bottom,#B7DB7D,#9DC45F);
		background-repeat: repeat-x;
		*/}

table[data-grid] h1 {
		color: #FFF;
		font-size: 14px;
		}
				
table[data-grid] tr {
		display: table-row;
		vertical-align: inherit;
		border-color: inherit;
		white-space: normal !important;  /* clear no-wrap to keep table from extending off page */
		}

table[data-grid] th, table[data-grid] td {
		padding: 10px 12px;
		text-align: left;
		vertical-align: middle;
		border-top: 1px solid #9DC45F;                                
		}

table[data-grid] td:first-child {  /* style first col */
		padding: 10px 12px;
		vertical-align: middle;
		border-left: 1px solid #9DC45F;
		}

table[data-grid] td {
		padding: 10px 12px;
		vertical-align: middle;
		border-top: 1px solid #9DC45F;
		}

table[data-grid]thead:first-child tr:first-child th:first-child, tbody:first-child tr:first-child td:first-child {
		border-radius: 5px 0 0 0;
		vertical-align: middle;
		}

table[data-grid]thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td:first-child {
		border-radius: 0 0 0 5px;
		}


/*------------------------------------- text inputs -------------------------------------*/

label {
		margin: 3px;
		}

input {
		margin: 3px;
		}

/*------------------------------------- Related Links -------------------------------------*/

.related-links {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		width: 175px;
		background: #FFF;
		padding: 30px;
		border:1px solid #9DC45F;
		color: #666;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		}

.related-links[withform] {
		margin: 0 0 15px 15px;
		}

.related-links[withgrid] {
		margin: 0 15px 0 0; 
		}

.related-links h1 {
		padding: 10px 0px 10px 20px;
		display: block;
		margin: -30px -30px 0px -30px;
		color: #FFF;
		background: #9DC45F;
		border-radius: 5px 5px 0px 0px;
		-webkit-border-radius: 5px 5px 0px 0px;
		-moz-border-radius: 5px 5px 0px 0px;
		border-bottom:1px solid #9DC45F;
		font-size: 14px;
		}

.related-links ul {
		margin: 0px -30px -30px -70px;
		/* *border-collapse: collapse; IE7 and lower - commented out for modern browsers */
        }
				
.related-links ul li {
		list-style:none;
		padding:6px 20px;
		border-top: 1px solid #9DC45F;
		}
		

		
/*------------------------------------- Related Links GRID -------------------------------------*/


.content-column {
    float: none; /* not needed, just for clarification */
    /* the next props are meant to keep this block independent from the other floated one */
    width: 100%;
    overflow: hidden;
	
display: block;	
	}	

.related-column {
    
display: inline-block;
vertical-align:top;	
}	

/*------------------------------------- Mobile Viewport Fixes -------------------------------------*/

/* Removed mobile-specific navigation styles - using consistent approach for all viewport sizes */

/*------------------------------------- NEW FORM FIELD STYLES -------------------------------------*/

/* Modern two-column form layout with right-aligned labels and left-aligned fields */
.data-entry.new-form-container {
    width: 400px !important;
    padding-top: 5px;
}

.new-form-container h1 {
    margin-top: -5px;
}

.new-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.new-form-label {
    flex: 0 0 120px;
    text-align: right;
    padding-right: 15px;
    font-weight: bold;
    color: #333;
}

.new-form-label.required {
    color: darkred !important;
}

.new-form-field {
    flex: 1;
    text-align: left;
}

.new-form-field input[type="text"],
.new-form-field input[type="password"],
.new-form-field input[type="email"],
.new-form-field input[type="number"],
.new-form-field textarea,
.new-form-field select {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
    margin: 0;
    vertical-align: top;
}

.new-form-field input[type="checkbox"] {
    margin: 0;
}

.new-form-actions {
    margin-top: 20px;
    padding-left: 135px;
}

.new-form-actions input[type="submit"] {
    background-color: #4A63B8;
    border-radius: 5px;
    border: 1px solid #394F99;
    padding: 10px 25px;
    color: #FFF;
    text-shadow: 1px 1px 1px #949494;
    cursor: pointer;
}

.new-form-actions input[type="submit"]:hover {
    background-color: #394F99;
    border-color: #394F99;
}

/* Override form container padding for new forms */
.new-form-wrapper #form {
    padding-top: 0px;
}

/* Additional override to ensure 400px width is maintained */
.data-entry.new-form-container {
    width: 400px !important;
    max-width: 400px !important;
    min-width: 400px !important;
}

/*------------------------------------- NEW LAYOUT STYLES -------------------------------------*/

/* Admin dashboard card styling for new layout */
.admin-card {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    padding-top: 5px !important;
}

.admin-card h1 {
    margin-top: -5px !important;
}

/* Style the admin links for new layout */
.admin-card a {
    color: #4A63B8;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.admin-card a:hover {
    color: #394F99;
    text-decoration: underline;
}

.admin-card a:last-child {
    border-bottom: none;
}

/* Force the two-column layout with highest specificity */
form.data-entry.new-form-container .new-form-row {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0px !important;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

form.data-entry.new-form-container .new-form-label {
    flex: 0 0 120px !important;
    text-align: right !important;
    padding-right: 15px !important;
    font-weight: bold !important;
    color: #333 !important;
}

form.data-entry.new-form-container .new-form-label.required {
    color: darkred !important;
}

form.data-entry.new-form-container .new-form-field {
    flex: 1 !important;
    text-align: left !important;
}

form.data-entry.new-form-container .new-form-field input[type="text"],
form.data-entry.new-form-container .new-form-field input[type="password"],
form.data-entry.new-form-container .new-form-field input[type="email"],
form.data-entry.new-form-container .new-form-field input[type="number"],
form.data-entry.new-form-container .new-form-field textarea,
form.data-entry.new-form-container .new-form-field select {
    width: 100% !important;
    max-width: 300px !important;
    padding: 8px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    vertical-align: top !important;
}

/*------------------------------------- DETAIL TABLE STYLES -------------------------------------*/

/* Detail table without horizontal lines for clean display */
table[data-grid].detail-table td {
    border-top: none !important;
}

/* Keep the left border for the first column to maintain card outline */
table[data-grid].detail-table td:first-child {
    border-left: 1px solid #9DC45F !important;
}

/*------------------------------------- FORM CARD STYLES -------------------------------------*/

/* Full viewport width form card for maximum data entry space */
.data-entry.form-width-card {
    width: calc(98vw - 32px) !important;
    max-width: none !important;
    min-width: auto !important;
    padding-top: 5px !important;
    margin: 0 16px !important;
    box-sizing: border-box !important;
}

/* Expand form fields to use full card width */
form.data-entry.new-form-container.form-width-card .new-form-field input[type="text"],
form.data-entry.new-form-container.form-width-card .new-form-field input[type="password"],
form.data-entry.new-form-container.form-width-card .new-form-field input[type="email"],
form.data-entry.new-form-container.form-width-card .new-form-field input[type="number"],
form.data-entry.new-form-container.form-width-card .new-form-field textarea,
form.data-entry.new-form-container.form-width-card .new-form-field select {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/*------------------------------------- FULL-WIDTH CARD STYLES -------------------------------------*/

/* Content-scaled card that sizes itself based on content */
.data-entry.full-width-card {
    width: auto !important;
    max-width: calc(100% - 32px) !important;
    min-width: 400px !important;
    padding-top: 5px !important;
    margin: 0 16px !important;
}

/* Ensure balanced padding for full-width cards */
.new-form-wrapper.full-width-wrapper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.new-form-wrapper.full-width-wrapper #form {
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
}


.full-width-card h1 {
    margin-top: -5px !important;
}

/*------------------------------------- TASK SCHEDULING INTERFACE STYLES -------------------------------------*/

/* Frequency selector for task scheduling */
.frequency-selector {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.frequency-option {
    padding: 5px 11px;
    border: 2px solid #e1e5e9;
    border-radius: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 11px;
}

.frequency-option:hover {
    border-color: #007AFF;
}

.frequency-option.selected {
    border-color: #007AFF;
    background: #007AFF;
    color: white;
}

/* Day selector for weekly/biweekly scheduling */
.day-selector {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.day-button {
    width: 28px;
    height: 28px;
    border: 2px solid #e1e5e9;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s;
}

.day-button:hover {
    border-color: #007AFF;
}

.day-button.selected {
    border-color: #007AFF;
    background: #007AFF;
    color: white;
}

/*------------------------------------- DASHBOARD STYLES -------------------------------------*/

/* Dashboard Container */
.dashboard-container {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure dashboard grid respects container padding and doesn't overflow */
.dashboard-container .dashboard-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.dashboard-container h1 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

/* Dashboard Grid - Responsive Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
    gap: 8px;
    margin-bottom: 40px;
    width: 100%;
}

/* Metric Card Base Styles - Square Layout */
.metric-card {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
}

/* Color-coded borders to match headers - Subdued corporate palette */
.metric-card-red {
    border-color: #8B4A5C;
}

.metric-card-yellow {
    border-color: #B8956A;
}

.metric-card-blue {
    border-color: #5B7FA8;
}

.metric-card-orange {
    border-color: #B87A5A;
}

.metric-card-green {
    border-color: #6B8B6B;
}

.metric-card-purple {
    border-color: #7A6B8B;
}

.metric-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Metric Card Header - Colored Bar */
.metric-card-header {
    padding: 4px 6px;
    color: #FFF;
    font-size: 11px;
    font-weight: normal;
    border-radius: 5px 5px 0 0;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.metric-card-header .metric-label {
    color: #FFF;
    font-size: 11px;
    margin: 0;
    line-height: 1.2;
}

/* Metric Card Body */
.metric-card-body {
    padding: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Color-coded Metric Card Headers - Subdued corporate palette */
.metric-card-red .metric-card-header {
    background-color: #8B4A5C;
}

.metric-card-red:hover {
    box-shadow: 0 4px 12px rgba(139, 74, 92, 0.2);
}

.metric-card-yellow .metric-card-header {
    background-color: #B8956A;
}

.metric-card-yellow:hover {
    box-shadow: 0 4px 12px rgba(184, 149, 106, 0.2);
}

.metric-card-blue .metric-card-header {
    background-color: #5B7FA8;
}

.metric-card-blue:hover {
    box-shadow: 0 4px 12px rgba(91, 127, 168, 0.2);
}

.metric-card-orange .metric-card-header {
    background-color: #B87A5A;
}

.metric-card-orange:hover {
    box-shadow: 0 4px 12px rgba(184, 122, 90, 0.2);
}

.metric-card-green .metric-card-header {
    background-color: #6B8B6B;
}

.metric-card-green:hover {
    box-shadow: 0 4px 12px rgba(107, 139, 107, 0.2);
}

.metric-card-purple .metric-card-header {
    background-color: #7A6B8B;
}

.metric-card-purple:hover {
    box-shadow: 0 4px 12px rgba(122, 107, 139, 0.2);
}

/* Metric Card Link */
.metric-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.metric-card-link:hover {
    text-decoration: none;
}

.metric-card-link:visited {
    color: inherit;
}

/* Metric Value */
.metric-value {
    font-size: 48px;
    font-weight: bold;
    color: #555;
    line-height: 1;
}

/* Metric Label - used in header */
.metric-label {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Dashboard Graphs Section */
.dashboard-graphs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .dashboard-graphs {
        grid-template-columns: 1fr;
    }
}

/* Graph Placeholder */
.graph-placeholder {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 8px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.graph-placeholder:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.graph-placeholder-content {
    text-align: center;
    padding: 20px;
}

.graph-placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.graph-placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.graph-placeholder-subtitle {
    font-size: 14px;
    color: #666;
}
