html{
	font-family: sans-serif;
	background-color: #2f3237;
}

h1, h2, h3, h4, h5, h6{
	color: white;
}

label{
	color: white;
	font-size: 1.5em;
}

.uk-active a{
	color: white !important;
}

 /* The side navigation menu */
 .sidebar {
	margin: 0;
	padding: 0;
	width: 200px;
	background-color: #535353;
	position: fixed;
	height: 100%;
	overflow: auto;
  }
  
  /* Sidebar links */
  .sidebar a {
	display: block;
	color: white;
	padding: 16px;
	text-decoration: none;
  }
  
  /* Active/current link */
  .sidebar a.active {
	background-color: #1e87f0;
	color: black;
  }
  
  /* Links on mouse-over */
  .sidebar a:hover:not(.active) {
	background-color: #303030;
	color: white;
  }
  
  /* Page content. The value of the margin-left property should match the value of the sidebar's width property */
  div.page_content {
	margin-left: 200px;
	padding: 1px 16px;
	height: 1000px;
  }
  
  /* On screens that are less than 700px wide, make the sidebar into a topbar */
  @media screen and (max-width: 700px) {
	.sidebar {
	  width: 100%;
	  height: auto;
	  position: relative;
	}
	.sidebar a {float: left;}
	div.page_content {margin-left: 0;}
  }
  
  /* On screens that are less than 400px, display the bar vertically, instead of horizontally */
  @media screen and (max-width: 400px) {
	.sidebar a {
	  text-align: center;
	  float: none;
	}
  } 

  .sidebar-footer{
	  position: fixed;
	  width: inherit;
	  bottom: 0;
	  font-size: smaller;
  }

  .autocomplete {
    position: relative;
    width: 300px;
}

.autocomplete-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
}

.autocomplete-suggestion {
    padding: 8px;
    cursor: pointer;
}

.autocomplete-suggestion:hover {
    background: #f0f0f0;
}