.header {
  display: flex;
  flex-direction: row;
  height: 56px;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 100;
}

.left-section {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.hamburger-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  margin-left: 15px;
  margin-right: 10px;
  border-radius: 22px;
  cursor: pointer;
}

.hamburger-menu-container:hover {
  background-color: rgb(238, 238, 238);
}

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

.youtube-logo {
  margin-top: 4px;
  margin-left: 2px;
  height: 20px;
}

.middle-section {
  flex: 1;
  margin-left: 140px;
  margin-right: 10px;
  max-width: 690px;
  display: flex;
  align-items: center;
}

.search-bar {
  flex: 1;
  width: 0;
  height: 36px;
  font-size: 16px;
  padding-left: 16px;
  padding-right: 4px;
  padding-top: 1px;
  padding-bottom: 1px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 40px 0 0 40px;
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.05);
  cursor: text;
}

.search-bar::placeholder {
  font-family: Roboto, Arial;
  font-size: 16px;
}

.search-button {
  height: 40px;
  width: 64px;
  padding-left: 6px;
  padding-right: 6px;
  margin-right: 8px;
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: rgb(247, 247, 247);
  border-style: solid;
  border-width: 1px;
  border-color: rgb(204, 204, 204);
  border-radius: 0 40px 40px 0;
  margin-left: -1px;
  position: relative;
  cursor: pointer;
}

.search-button,
.voice-search-button,
.notifications-icon-container {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}

.search-button .tooltip,
.voice-search-button .tooltip,
.notifications-icon-container .tooltip {
  background-color: rgba(96, 96, 96, 0.9);
  font-family: Roboto, Arial;
  color: white;
  font-size: 12px;
  padding: 8px;
  border-radius: 2px;
  position: absolute;
  bottom: -50px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  white-space: nowrap;
}

.search-button:hover .tooltip,
.voice-search-button:hover .tooltip,
.notifications-icon-container:hover .tooltip {
  opacity: 1;
}

.search-icon {
  height: 25px;
}

.voice-search-button {
  height: 40px;
  width: 40px;
  margin-left: 8px;
  border: none;
  border-radius: 20px;
  background-color: rgb(247, 247, 247);
  cursor: pointer;
}

.voice-search-icon {
  height: 24px;
}

.right-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 200px;
  margin-right: 34px;
  margin-left: 57px;
}

.upload-icon {
  height: 48px;
  width: 40px;
  margin-right: 6px;
  margin-left: -12px;
}

.upload-icon-text {
  font-weight: 500;
  margin-left: -8px;
}

.upload-icon-button {
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-transform: none;
  border: none;
  height: 36px;
  width: 97px;
  background-color: rgb(247, 247, 247);
  cursor: pointer;
}

.notifications-icon {
  height: 24px;
  cursor: pointer;
}

.notifications-icon-container {
  position: relative;
}
.notifications-count {
  background-color: rgb(204, 0, 0);
  border-radius: 80px;
  position: absolute;
  top: -3px;
  right: -7px;
  color: white;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Roboto, Arial;
  font-size: 10px;
  padding: 1.5px 5px;
  pointer-events: none;
}

.current-user-picture {
  height: 32px;
  border-radius: 16px;
  object-fit: cover;
  margin-left: 20px;
  cursor: pointer;
}