.header {
  height: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
}

.left-section img {
  height: 22px;
}

.left-section {
  width: 140px;
  display: flex;
  align-items: center;
}

.hamburger-menu {
  margin-left: 24px;
  margin-right: 24px;
}

.middle-section {
  flex: 1;
  margin-left: 70px;
  margin-right: 30px;
  max-width: 500px;
  display: flex;
  align-items: center;
}
.search-bar {
  flex: 1;
  height: 36px;
  padding-left: 10px;
  font-size: 16px;
  border-width: 1px;
  border-color: rgb(204, 204, 204);
  border-style: solid;
  border-radius: 2px;
  box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
  width: 0;
}
.search-bar::placeholder {
  font-size: 16px;
}
.search-button {
  height: 40px;
  width: 60px;
  background-color: rgb(240, 240, 240);

  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  margin-left: -1px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.search-button .tooltip {
  background-color: grey;
  color: white;
  padding: 4px 8px;
  position: absolute;
  bottom: -36px;
  right: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.search-button:hover .tooltip {
  opacity: 1;
}

.search-icon {
  height: 25px;
  margin-top: 4px;
}

.voice-search-button {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  border: none;
  background-color: rgb(245, 245, 245);
}
.voice-search-icon {
  height: 24px;
  margin-top: 4px;
}

.right-section {
  width: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.right-section img {
  height: 24px;
}
.right-section .current-user-pic {
  height: 32px;
}
