@import url("inputs.css");

body {
    font-family: trebuchet, arial, sans-serif;
    text-align: center;
    font-size: 12px;
	color: #606060;
	background:	#ffffff;
	
}

html, body, h1 {
    margin: 0;
    padding: 0;
}

h1.noline {
	font-size: 18px;
	color: #97A99B;
	font-weight: bold;
	font-family: helvetica, arial;
	margin-bottom:3px;
	border-bottom-width: 0px;
	border-bottom-style: none;
	border-bottom-color: #97A99B;
	
	}

h1{
	font-size: 18px;
	color: #889922;
	font-weight: bold;
	font-family: helvetica, arial;
	margin-bottom:3px;
	margin-top: 10px;
}


h2{
	font-size: 12px;
	color: #889922;
	font-weight: bold;
	margin: 0px 0px 8px 0px;
}

h3{
	font-size: 10px;
	color: #97A99B;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
}
h6{
	font-family: trebuchet, arial, sans-serif;
	font-size: 12px;
	color:#CC111C;
	display: inline-block;
}

img { 
	border: 0; 
}

a {
   	font-weight: bold;
	color: #889922;
	text-decoration:none;
	font-size: 12px;
}

a:hover{
	text-decoration:underline;
	color: #e0e0e0;
}

#error_msg{
	color: #CC111C;
}

#navigation
{
	padding-left: 2px;
}

#navigation a{
	padding-left: 2px;
	
}

#navigation ul
{
	padding-left:14px;	
}

#nav-header{
	background:#889922;
	color: #ffffff;
	font-weight: bold;
	width: 155px;
	padding-left: 5px;
	padding-top: 5px;
	height: 20px;
	filter:alpha(opacity=90);
	opacity:0.9;
}

#search-box{
	margin-top: 0px;
	float:right;
	text-align:left;
	width: auto;
	padding: 5px;
	background: #ffffff;
}

ul{
	margin: 3px;
}

ul li{
	list-style:circle;	
	margin:0px;
}

#topline{
	border-bottom-width: 1px; 
	border-bottom-style:dotted; 
	border-bottom-color:#97A99B;
}


#wrapper{
	width:99%;
	height:100%;
	margin: 0px;
	background: #ffffff;
	/*border-style: solid;*/
	/*border-width: 1px;*/
	/*border-color: #889922;*/
}


p{
	font-size: 12px;
}

p.small{
	font-size: 9px;
	color: #97A99B;
	font-weight: bold;
}


hr{
	height: 1px;
	color: #889922;
	margin-top: 10px;
	margin-bottom: 10px;
}

#copy{
	width: 100%;
	text-align:center;
	font-size: 10px;
}

.topborder{
	border-top-width: 1px;
	border-top-style:solid;
	border-top-color:#889922
}

.bottomborder{
	border-bottom-width: 1px;
	border-bottom-style:solid;
	border-bottom-color:#889922;
}

.rightborder{
	border-right-width: 1px;
	border-right-style:solid;
	border-right-color:#889922
}

select{
	font-size: 15px;
	color:#758177;
	border-color: #97A99B;
	border-width: 1px;
	width: 130px;
	padding: 12px;
}

.button{
	font-size: 12px;
	color: #889922;
	font-weight:bold;
	border-color: #000000;
	border-width: 1px;
	background:#f0f0f0;
	padding:4px;
	cursor:pointer;
}

th{
background: #889900;
color: #ffffff;
font-weight:bold;
text-align:center;
padding: 3px;
border: solid 1px #889922;
filter:alpha(opacity=90);
opacity:0.9;
}

.greenborder{
	border-color: #889922;
	border-width: 1px;
	border-style: solid;
}

.checkbox-wrapper {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 2px;
}
  
.searchbox-wrapper {
	display: flex;
	align-items: center;
    justify-content: flex-end;
	width: 100%;
}

.vertical-align {
	display: flex;
	align-items: center;
}

#calendarIcon {
    cursor: pointer;
	margin: 0 4px;
}

#dateInput {
	width: 100px;
}


/* Hiding the checkboxes */
.accordion input[type="checkbox"] {
    display: none;
}

/* Style for the accordion title (can be customized) */
.accordion-title {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
	margin-top: 10px;
}

.accordion-title::after {
    content: 'Search Filter +';
}

/* Initially hiding the content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, opacity 0.3s 0.25s, visibility 0.3s 0.25s;
}

/* Displaying the content when the checkbox is checked */
.accordion input[type="checkbox"]:checked + .accordion-title + .accordion-content {
	margin-top: 10px;
	max-height: 50px; 
    visibility: visible;
    opacity: 1;
    /* You can adjust this value or use other methods to control the height */
}

.accordion input[type="checkbox"]:checked + .accordion-title::after {
	
	content: 'Search Filter -';
    /* You can adjust this value or use other methods to control the height */
}