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


/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, input[type=submit] {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
     padding: 0 !important;
     border: 0 none !important;
 }
input[type=submit]:hover{
	cursor:pointer;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	margin:0.000em;  /*  0px  */
	padding:0.000em;  /*  0px  */
	background-repeat: repeat-x;
	font-family:verdana, arial, helvetica, sans-serif;
	font-size:16px;
	color: #3f3f3f;
	zoom: 100%;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
select::-ms-expand {
    display: none;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
		  background-color:#FFF;
}
/* remember to define visible focus styles! 
:focus {
	outline: ?????;
} */

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
strong{
	font-weight:900;
}

a{
	text-decoration:none;
	color:inherit;
}
p{
	padding-bottom:1.250em;
}
.clear{
	clear:both;
}

.error{
	color:#e65959;
}
.owed{
	color:green;
	font-weight:bold;
}

form{
	display:inline-block;
	margin:0px;
	padding:0px;
}

input::placeholder {
    color: #ccc; /* Light gray */
    opacity: 1;  /* Ensures it stays visible in Firefox */
}

input[type="text"],select{
    width: 10.3125rem; /* 165px / 16 */
    font-size: 0.75rem;
    padding: 0.375rem; /* 6px / 16 */
    box-sizing: border-box;
    border: 1px solid #999;
    font-size: 14px;
    box-sizing: border-box;}


/* Apply a nice background color on focus */
input[type="text"]:focus, select:focus {
    border-color: #7088A0; /* Blue border */
    outline: none;
}


fieldset {
    border: 1px solid #666;
    border-radius: 0.3125rem; /* 5px / 16 */
    padding: 0.625rem; /* 10px / 16 */
    margin-bottom: 0.625rem;
    box-shadow: none;
}

legend {
    font-size: 0.9em !important;
    font-weight: bold;
	background-color: #7a7a7a;
	border: 1px solid #505050;
    color: #FFF;
    padding: 5px;
    border-radius: 0.3125rem; /* 5px / 16 */

}

legend input[type="checkbox"] {
    margin: 0;
	margin-right: 0.3rem; /* 10px in rem */
}


table {
	border-collapse: collapse;
	border-spacing: 0;
	width:100%;
}
table td{
	padding:5px;
	vertical-align: middle; /* Ensures the cell itself is vertically aligned */
}

/* Apply shading to even rows */
.ff_content table  tr:nth-child(odd) {
    background-color: #CADFF3;  
}

/* Apply shading to odd rows */
.ff_content table  tr:nth-child(even) {
    background-color: #c1d7ec; 
}

.question{
	padding:5px;
	background-color:#7a7a7a !important;
	border: 1px solid #505050 !important;
	color:#FFF;
	font-weight: bold;
}


/**** LOGIN ******/
/*****************/

#login_div {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 100vh;
	width: 100vw;
	background-color: #f4f4f4;
	padding-top: calc(10vh + 20px);
}

/* Center the login form on the page */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* Style the input fields to make them all the same width */
#login_div input[type="text"], #login_div input[type="password"], #login_div button {
    width: 100%; /* Ensures inputs and button take up the full container width */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding and border are included in the total width */
}

/* Style the remember me container */
.remember-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

/* Style for the checkbox and label on the same line */
.remember-label {
    display: flex;
    align-items: center;
}

/* Style the login button */
#login_div button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Button hover effect */
#login_div button:hover {
    background-color: #0056b3;
}

/* Style for forgot password link */
.forgot-password {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #007bff;
    text-decoration: none;
}

/* Error response message */
.error-response {
    margin: 10px 0;
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-size: 14px;
    display: none; /* Initially hidden */
}

/* Style the label and checkbox */
.remember-label input[type="checkbox"] {
    margin-right: 5px;
}


/**** FOR PROGRAMMING NOTE DIV *********/


#programming_note_div th{
	padding: 5px;
	border: 1px solid #ddd;
	text-align: left;
	background-color:#666;
	color:#fff;
}

#programming_note_div td {
	padding: 5px;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align:top;
}

#programming_note_div input, 
#programming_note_div select, 
#programming_note_div textarea {
	box-sizing: border-box;
	font-size: 14px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	line-height: 1.5;
}

#programming_note_div textarea {
	width:795px;
	height:80px;
}

#programming_note_div button {
	padding: 10px;
	cursor: pointer;
	height: 38px; /* Slightly larger for button */
	border: none;
	background-color: #28a745;
	color: white;
	border-radius: 4px;
}

#programming_note_div button:hover {
	background-color: #218838;
}

#programming_note_div .rowChecked {
	text-decoration: line-through;
}

/* Apply shading to even rows */
#programming_note_div  table  tr:nth-child(odd) {
    background-color: #D3D3D3;  
}

/* Apply shading to odd rows */
#programming_note_div  table  tr:nth-child(even) {
    background-color: #fff; 
}