/*
	main index styles
*/
#login {
	width: fit-content;
	min-width: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15%;
	padding: 10px;
	text-align: center;
	border-radius: 25px;
	border: 4px solid orange;
}

/*
	homeadmin styles
*/

/*
	navbar style
*/
#nav ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: grey;
}

#nav li{
	float: left;
}

#nav li a{
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

#nav li a:hover{
	background-color: orange;
}

.active{
	background-color: #ff9100;;
}

#container{
	width: 90%;
	background-color: black;
	margin-left: auto;
	margin-right: auto;
}

#main{
	background-color: white;
	padding: 5px 5px 5px 5px;
}

#footer{
	height: 50px;
	background-color: grey;
}

#datasection {
	border-radius: 25px;
	width: 250px;
	height: 150px;
	padding: 5px;
	font-weight: bold;
}

.red {
	border: 4px solid red;
}

.blue {
	border: 4px solid blue;
}

#datasection table {
	margin: 10px auto 0 auto;
}

#datasection table th{
	font-size: 20 px;
}

#datasection table td {
	font-size: 30px;
}
