.parent {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: .25fr fit-content(300px);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 4; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 2 / 2 / 3 / 3; }
.div4 { grid-area: 2 / 3 / 3 / 4; }
.div5 { grid-area: 3 / 1 / 4 / 2; }
.div6 { grid-area: 3 / 2 / 4 / 3; }
.div7 { grid-area: 3 / 3 / 4 / 4; }
.div8 { grid-area: 4 / 1 / 5 / 2; }
.div9 { grid-area: 4 / 2 / 5 / 3; }
.div10 { grid-area: 4 / 3 / 5 / 4; }
/*Sub Pages*/
.div11 { grid-area: 2 / 1 / 4 / 2; }
.div12 { grid-area: 2 / 2 / 4 / 4; }
/*Daily Report*/
.div13 { grid-area: 2 / 1 / 3 / 2; }
.div14 { grid-area: 3 / 1 / 4 / 2; }
.div15 { grid-area: 2 / 2 / 5 / 4; }

.div1 {
	margin-bottom: 5px;
}

.div2, .div3, .div4, .div5, .div6, .div7, .div8, .div9, .div10, .div11, .div12, .div13, .div14, .div15 {
	border-radius: 15px;
	border: 1px solid #000;
	padding: 5px;
	margin:2px;
}

/*sub_grrid for daily report*/
.report_grid {
	display: grid;
	grid-template-columns: .1fr 1fr .25fr;
	grid-template-rows: repeat(11, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	font-family: "Kode Mono", monospace;
	font-style: normal;
	font-size: 14pt;
}

.rg1 { grid-area: 1 / 1 / 2 / 4; }
.rg2 { grid-area: 2 / 2 / 3 / 3; }
.rg3 { grid-area: 2 / 3 / 3 / 4; }
.rg4 { grid-area: 3 / 1 / 4 / 2; }
.rg5 { grid-area: 3 / 2 / 4 / 3; }
.rg6 { grid-area: 3 / 3 / 4 / 4; }
.rg7 { grid-area: 4 / 2 / 5 / 3; }
.rg8 { grid-area: 4 / 3 / 5 / 4; }
.rg9 { grid-area: 5 / 1 / 6 / 2; }
.rg10 { grid-area: 5 / 2 / 6 / 3; }
.rg11 { grid-area: 5 / 3 / 6 / 4; }
.rg12 { grid-area: 6 / 1 / 7 / 2; }
.rg13 { grid-area: 6 / 2 / 7 / 3; }
.rg14 { grid-area: 6 / 3 / 7 / 4; }
.rg15 { grid-area: 7 / 1 / 8 / 2; }
.rg16 { grid-area: 7 / 2 / 8 / 3; }
.rg17 { grid-area: 7 / 3 / 8 / 4; }
.rg18 { grid-area: 9 / 2 / 10 / 3; }
.rg19 { grid-area: 9 / 3 / 10 / 4; }
.rg20 { grid-area: 10 / 2 / 11 / 3; }
.rg21 { grid-area: 10 / 3 / 11 / 4; }
.rg22 { grid-area: 11 / 2 / 12 / 3; }
.rg23 { grid-area: 11 / 3 / 12 / 4; } 

.rg6, .rg14 {
	border-bottom: 2px solid #cccccc;
}

.rg18, .rg20, .rg22 {
	text-align: right;
}

.no_border {
	border-width: 0;
}

.success, .failure {
	height: 175px;
	width: 80%;
	border-radius: 15px;
	border: 5px solid #000;
	background-color: green;
	font-size: 3em;
	padding: 10px;
	overflow-wrap: break-word;
	text-align: center;
	margin-top: 25px;
}

.success {
	background-color: green;
	border: 5px solid #2E8B57;
	color: black;
}

.failure {
	background-color: darkred;
	border: 5px solid #D10000;
	color: white;
}

.monospace {
	font-family: "Kode Mono", monospace;
	font-style: normal;
}

.login {
	font-family: "Kode Mono", monospace;
	font-style: normal;
}

.login h1 {
	font-weight: 700;
}
.login h2 {
	font-weight: normal;
	font-size: 24pt;
}

.login button {
	font-family: "Kode Mono", monospace;
	font-style: normal;
	font-size: 14pt;
}

.menu a, .menu a:hover, .menu a:visited {
	color: #1B4965;
	background-color: #CAE9FF;
	margin: 2px;
	padding: 5px;
	border-radius: 5px;
	text-decoration: none;
	border: 1px solid #1B4965;
}

.menu a:hover {
	background-color: #BEE9E8;
}

.search legend {
  font-size: 1.5em;
}

.search fieldset {
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 15px;
}

.search input {
  font-size: 1.5em;
}

.search input, button {
  border: 1px solid #1B4965;
  border-radius: 5px;
}

.search button {
  padding: 5px;
  margin: 2px;
  background: #CAE9FF;
  color: #1B4965;
  width: 200px;
}

.search button:hover {
  background: #BEE9E8;
}

