/*Styling sidebar*/
.sidebar {
	position: fixed;/*fixing the position of the sidebar*/
	overflow-x: hidden;
	top:0;
	height: 100%;
	width: 180px;
	z-index: 1;
	background-color: #1F2041;
	padding-top: 50px;
	}

/*styling the links and the dropown menu in the sidebar*/
.sidebar a, select{
	padding: 7px 9px 7px 17px;
	text-decoration: none;
	font-size: 25px;
	color: #417B5A;
	display: block;
	}

/*styling the dropdown menu to match the theme*/
.sidebar select {
	padding: 6px;
	font-size: 25px;
	background-color: #111;
}

/*to change color when user hover over the menu*/
.sidebar a:hover, select:hover {
	color: white;
	}
	
/*to change the style of the sidebar for smaller screen*/
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/*styling the topbar with name*/
.topbar {
	overflow: hidden;
	background-color: #1F2041;
	top: 0;
	width: 100%;
	}

.topbar h3{
	padding-top:20px;
	margin-left:630px;
	}

/*changing the color of Bootstrap class*/				
.jumbotron{
	background-color: #E9D2C0;
}

iframe {
	padding-top: 20px;
	padding-bottom:20px;
}

ul{
	font-size:25px;
}

/*styling table and its content*/
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

th, td {
  padding: 15px;
}


	

				