.header  {
  height: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;
  background-color: rgb(245, 245, 245);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(228, 228, 228);

} 

.left-header {
  padding-left: 50px;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: bold;

}

.middle-header {
  display: flex;
  align-items: center;
  padding-left: 6px;
  background-color: white;
}



.current-user {
  height: 40px;
  margin-right: 50px;
  border-radius: 20px;
  
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.20);
}

.current-user:hover {
  box-shadow: inset 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  
}

.searchbar {
  font-size: 18px;
  height: 40px;
  width: 200px;
  border: none;
}
/*focus sets what happens when the text input 
has been clicked*/
.searchbar:focus {
  outline: none;
}

.search-button {
  height: 33px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 0;
  border-left: 1px solid lightgrey;
}

.search-button:hover {
  cursor: pointer;
  background-color: rgb(243, 243, 243);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.20);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}