* {
	margin: 0px;
	padding: 0px;
  }



 #menu ul{
 
	list-style:none;
}
#menu ul li
{
	margin: 2px;

	min-width: 80px;
	
	max-width: 100 auto;
	height:20px;
	line-height: 20px;
	text-align:center;
	float: left;
	position:relative;
	border-radius: 8px;
	background-color: #147ec5;
	
}
#menu ul li a
{
	text-decoration:none;
	color:rgb(242, 248, 248);
	display: block;
}

#menu ul li a:hover
{

	background-color: aqua;
	border-radius: 8px; 
	color: #0855ad;
	
}

#menu ul ul
{
	position:absolute;
	display: none;
	
}

#menu ul li:hover > ul
{
	display: block;
}

#menu ul ul ul
{
	margin-left:80px;
	top: 0px;
}












  body {
	min-height: 100%;
	font-size: 100%;
	background: #F8F8FF;
  }
  
  .header {
	width: 98%;
	margin: 5px auto 0px;
	color: white;
	background: #0855ad;
 	text-align: center;
	border: 1px solid #B0C4DE;
	border-bottom: none;
	border-radius: 0px 0px 0px 0px;
	padding: 10px;

	height: 50px;
  }
  form, .content {
	width: 98%;
  	min-height: 300px;
	margin: 0px auto;
	padding: 0px;
	border: 1px solid #B0C4DE;
	background: white;
	border-radius: 0px 0px 10px 10px;
  }
  .input-group {
	margin: 10px 0px 10px 0px;
  }
  .input-group label {
	display: block;
	text-align: left;
	margin: 3px;
  }
  .input-group input {
	height: 30px;
	width: 93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid gray;
  }
  .btn {
	padding: 10px;
	font-size: 15px;
	color: white;
	background: #00bfff ;
	border: none;
	border-radius: 5px;
	
  }
   .btnd {
	padding: 10px;
	font-size: 15px;
	color: white;
	background: #5F9EA0;
	border: none;
	border-radius: 5px;
  }
  
  .error {
	width: 92%; 
	margin: 0px auto; 
	
	border: 1px solid #a94442; 
	color: #a94442; 
	background:  #ffff66; 
	border-radius: 5px; 
	text-align: left;
  }
  .success {
	color: #3c763d; 
	background: #dff0d8; 
	border: 1px solid #3c763d;
	margin-bottom: 20px;
  }
  .table {
	width: 95%;
	margin: 30px auto 0px;
	color: white;
	background: #5F9EA0;
	text-align: center;
	border: 1px solid #B0C4DE;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
	padding: 10px;
	min-height: 500px; /* Set the desired height for the table container */
	overflow: auto;
  }
  
  .img-fixed-size {
	max-width: 100px;
	max-height: 100px;
	border-radius: 10px 10px 10px 10px;
	border-color: #a94442;
	
	background: #5F9EA0;
  }
  
 
  
  
  
  
  .table-container {
	width: 100%; /* Set the desired width for the table container */
	height: auto; /* Set the desired height for the table container */
	min-height: 400px;
	overflow: auto; /* Enable scrolling for content exceeding container dimensions */
  }
  
