header{
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background-color: #187e97;
}
footer{
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #187e97;
    background-color: #d9e2e4;
}
.form-container{
	margin:20px ;
	display: flex;
	flex-direction: column;
}
form{
	width: 250px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
form div{
	display: flex;
	flex-direction: column;
	gap: 2px;
}
form input[type="submit"]{
	font-size: 16px;
    color: white;
    background-color: #187e97;
	padding: 5px;
	cursor: pointer;
	border: 1px solid #136276;
}
form input[type="submit"]:hover{
    background-color: #16748b;
}
.menu-action{
	display: none;
}
nav{
	font-size: 16px;
	padding: 10px;
	background-color: #187e97;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;

}
nav a{
    color: white;
	padding: 5px;
	cursor: pointer;
	text-decoration: none;
}

nav a::after{
	padding-left: 10px;
	content: "|";
}
nav a:last-child::after{
	content: "";
}

nav a:hover{
	color: #a2dbe9;
	border-bottom: 2px solid cyan;
}
nav span{
	color:#fff;
	margin-top: 5px;
    margin-right: 10px;
}
nav span::after{
	padding-left: 10px;
	content: "|";
}
.menu-icon{
	height: 30px;
	width: 30px;
	border-radius: 5px;
}
input, select{
	height: 30px;
}
.multi-select-button{
	width: 100%;
}
.multi-select-menuitem input {
	margin-top: -6px !important;
}

.form-large{
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 600px;
	gap: 15px;
}
.err{
	color: red;
}
.suc{
	color: green;
}
.laptop-view{
	display: block;
}
.mobile-view{
	display: none;
}
.mobile-view-container{
	margin-top: 10px;
	background-color: #f1f7f9;
}
.mobile-view-container div{
	display: flex;
	flex-direction: column;
	margin: 5px;
	border-bottom: 1px solid #e0eaee;
	border-radius: 5px;
	margin: 3px;
	padding: 3px;	
}
.mobile-view-container div p{
margin: 0;
padding: 0;	
}

.mobile-view-container-sub{
	margin-top: 20px !important;
}
.field-label{
	color: darkgray;
}
.field-value{
	color: #505050;
}
@media only screen and (max-width: 600px) {
	nav{
		display: flex;
		flex-direction: column;
	}
	nav a::after{
		content: "";
	}
	nav span::after{
		content: "";
	}
	.menu-action{
		background-color: #187e97;
		display: block;
		padding-left: 7px;
	}
	form{
		width: 100%;
	}
	.form-large{
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.laptop-view{
		display: none;
	}
	.mobile-view{
		display: block;
		font-size: 18px;
	}
}