/* Unordered List and List Items (side menu) configuration - Begin */

a:hover {
	font-weight : none; 
	text-decoration : underline;
	color: #000088;
	background: transparent;  
	}

a:active {
	font-weight : none; 
	text-decoration : none;
	color: #526968;
	background: transparent;  
	}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 15%;
  background-color: #ccccdd; /* light blue background */
  border: 1px solid #555; /* black border */
  position: fixed; /* Make it stick, even on scroll */
  overflow: auto; /* Enable scrolling if the sidenav has too much content */
}

li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

li {
  text-align: center;
  border-bottom: 1px solid #555;
}

li:last-child {
  border-bottom: none;
}

li a.active {
  background-color: #2222bb; /* dark blue for active status */
  color: white;
}

li a:hover:not(.active) {
  background-color: #2020dd; /* slightly lighter blue when hovering on menu item */
  color: white;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: right;
  background-color: #bbbbdd; /* slightly darker light blue background */ 
  min-width: 25%;
  box-shadow: 2px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

.dropdown-content a {
  color: black;
  padding: none;
  text-decoration: none;
  display: block;
  text-align: right
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Sets a top horizontal option if the browser is 600 px or less */
@media screen and (max-width: 600px) {
  ul {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  ul li a {
    float: left;
    padding: 15px;
  }
  
  div.content {margin-left: 0;}
}

/* Sets a stacked horizontal option if the browser is 450 px or less */
@media screen and (max-width: 450px) {
  ul.sidenav li a {
    text-align: center;
    float: none;
  }
}

/* Unordered List and List Items (side menu) configuration - End */

