html {
	display: grid;
	height: 100%;
}
body {
  display: grid;
	/*background-color:rgb(255, 222, 173);*/
 	width: 100%;
 	height: 100%;
	margin: 0;
	/*overflow: hidden;*/
  color: black;
	font-size: 15px;
	font-family: sans-serif;
	box-sizing: border-box;
	}

button {
	font-size: 15px;
	font-family: sans-serif;
	}

var {
	font-style: italic;
	}

label {
	float: right;
	width: 90%; /* Adjust widths to fit your needs */
	}

.head-foot {
	background-color:rgb(122, 138, 184);
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "content content"
    "footer footer";
  grid-template-columns: auto;
  grid-template-rows: auto 3fr auto;
  gap: 2px;
  /*background-color: rgb(102, 153, 0);*/
  padding: 2px;
}
.container > div {
  /*background-color: rgb(255, 222, 173);*/
  padding: 5px;
}
.container > div.header {
  grid-area: header;
  text-align: center;
}
.container > div.content {
  grid-area: content;
}
.container > div.footer {
  grid-area: footer;
}

.menu-button {
	font-size: 15px;
	font-family: sans-serif;
	margin-bottom: 10px;
	/*border: 2px solid black;*/
	/*outline-offset: 15px;*/
}

.accordion {
	color: #444;
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	background-color: rgb(173,216,230); 
	}

.active, .accordion:hover {
	background-color: #ccc;
	}

.accordion:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
	}

.active:after {
	content: "\2212";
	}

.panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	}

.panel .menu-button:hover {
	background-color: #ccc;
	}

.sidenav {
	height: 100%;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(200, 222, 173); /* light green */
	overflow-x: hidden;
	transition: 0.5s;
	}

.nav-button {
	position: fixed;
	top:0;
	left:0;
	background-color: rgb(173,216,230);
	text-align: left;
	width: 250px;
	cursor: pointer; /* Pointer/hand icon */
	}

.nav-button:hover {
	background-color: #ccc;
	}

.sidenav a {
	background-color: rgb(173,216,230);
	cursor: pointer; /* Pointer/hand icon */
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 0px;
	padding-right: 0px;
	text-decoration: none;
	display: block;
	transition: 0.3s;
	width: 250px; /* Set a width if needed */
	}

.sidenav a:hover {
	background-color: #ccc;
	}

.sidenav {
	text-align: left;
	background-color: rgb(173,216,230); 
	cursor: pointer; /* Pointer/hand icon */
	font-size: 15px;
	width: 250px;
	}

.closebtn {
	top:0;
	left:0;
	text-align: left;
	background-color: rgb(173,216,230); 
	cursor: pointer; /* Pointer/hand icon */
	font-size: 15px;
	width: 250px;
}

.closebtn:hover {
	background-color: #ccc;
	}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

@media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
	}
