html {
	height: 100%;
}

body {
	margin:0px;
	padding:0px;
	font-family: Arial, Helvetica, sans-serif;
}

a {
	text-decoration:none;
}

header{
	background-color: #0000003e;
}

header h1{
	padding: 5px 10px;
	margin: 0px;
}

header h1 a {
	color: rgb(8, 0, 255);
}

ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color:#919090;;
	top: 30px;
	width: 100%;
	position:static;
  }
  
li {
	float: left;
  }
  
 li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
  }
  
 li a:hover:not(.active) {
	background-color: #1111114e;
	color:white;
  }
  
  .active {
	background-color:rgb(8, 0, 255);
	color: white;
  }

  ul.sidenav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: auto;
	background-color:#919090;;
	top: 0px;
	width: 185px;
	position:static;
  }

  ul.sidenav li a {
	display: block;
	color: white;
	text-align: left;
	padding: 14px 16px;
	text-decoration: none;
	width: 150px;
  }

  #logOut {
	display:block;
  }

  #logIn {
	display: block;
  }

 /* Dropdown button */

 li a, .dropbtn {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
  }
  
  li a:hover, .dropdown:hover .dropbtn {
	background-color: #1111114e;
	color:white;
  }
  
  li.dropdown {
	display: inline-block;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1;}
  
  .dropdown:hover .dropdown-content {
	display: block;
  }
  
main{
	margin-top:30px;
	width:100%;
	border-right: 1px solid #eeeeee;
}
.center {
	margin: auto;
}

footer{
	clear:both;
	text-align:center;
	font-size:.8em;
	padding-top:50px;	
}

#container, footer{
	width:100%;
	margin-top:30px;
	margin-bottom: 60px;
}


label{
	display:inline-block;
	width:150px;
	text-align:left;
}
button{
	margin-left:100px;
	margin-top:10px;
}

.formSeparator{
	margin-top:10px;
}

#logo{
	float:right;
	width:80px;
	height:88px;
}



/*Row and column layout*/
/* Create three equal columns that floats next to each other */
.column {
	float: left;
	width: 50%;
	padding: 15px;
  }
  
  /* Clear floats after the columns */
  .row::after {
	content: "";
	display: table;
	clear: both;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width:600px) {
	.column {
	  width: 100%;
	}
}
.row {
	display: flex;
	padding:5px;
  }
  
  /* Create multiple equal columns that sits next to each other */
  .column1 {
	float: left;
	padding: 5px;
  }

  .column2 {
	padding: 5px;
	/* height: 100px; hould be removed. Only for demonstration */
  }

  .column3 {
	padding: 5px;	
  }

  .columnRight1 {
	float: left;
	padding: 5px;
	margin-left: 530px;
  }

  .columnRight2 {
	padding: 5px;
	margin-left:auto;

	/* height: 100px; hould be removed. Only for demonstration */
  }

  .columnRight3 {
	padding: 5px;	
  }

  .rowTotals {
	float:right;
	padding: 5px;	
  }

/*Fieldset layout*/
fieldset {
	width: 33.3%;
	padding:5px;
}

textarea {
	width: 100%;
	height: 150px;
	padding: 12px 20px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #f8f8f8;
	font-size: 16px;
}

/*Select layout*/
.select {
	padding: 16px 20px;
	border: none;
	border-radius: 4px;
	background-color: #f1f1f1;
  }

 /*Button layout*/
 input[type=button], input[type=submit], input[type=reset] {
	background-color: #04AA6D;
	border: none;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
  }

  .button {
	background-color: #04AA6D;
	border: none;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
  }

.buttonblue {background-color: #008CBA;} /* Blue */
.buttonred {background-color: #f44336;} /* Red */ 
.buttongray {background-color: #e7e7e7; color: black;} /* Gray */ 
.buttonblack {background-color: #555555;} /* Black */
   
/*Table layout*/
table {
	border-collapse: collapse;
	margin:auto;
    max-height: 500px; /* Example: set a maximum height for vertical scroll */
    overflow-y: auto;   /* Add vertical scrollbar if content exceeds max-height */
    width: 100%;        /* Ensure container takes full width if needed */
  }
  

th,
td {
  border-collapse: collapse;
  padding: 2px 3px;
  text-align: left;
}
tr:nth-child(even) {
	background-color: #f2f2f2;
}

th {
  font-weight: bold;
}

#drop-area {
	margin:auto;
	border-radius: 25px;
	border: 2px dashed #cccccc;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	width: 200px;
	height: 150px;  
  }
  #drop-area.dragover {
	  border-color:  rgb(8, 0, 255);
  }



 #uploadImage{
	display:none;
	text-align:center;
	margin:auto;
	border-radius: 25px;
	width: 500px;
	height: 50px;  
	background-color: #04AA6D;
 }