/* Fixed sidenav, full height */
.sidebar {
  height: auto;
  width: 100%;
  float: left;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f2f6fa;
  overflow-x: hidden;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  border-radius: 5px 5px 5px 5px;
}

/* Style the sidenav links and the dropdown button */
.sidebar a, .dropdownButton {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  color: #0c3897;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidebar a:hover, .dropdownButton:hover {
  color: black;
  background-color: white;
}

/* Main content */
.main {
  margin-left: 190px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  color: black;
  background-color: #abbecd;
  border-radius: 5px 5px 0 0;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
	display: block;
	background-color: #e7ecf1;
	padding-left: 8px;
	border-radius: 0 0 5px 5px;
	display: none;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}