.header {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

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

.middle-section {
  display: flex;
  align-items: center;
  max-width: 500px;
  /* background-color: lightpink; */
  flex: 1;
  margin-left: 70px;
  margin-right: 35px;
}

.right-section {
  /* background-color: lightblue; */
  width: 200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.right-icons {
  height: 24px;
}

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

.youtube-logo {
  height: 20px;
}

.search-bar {
  width: 0;
  height: 35px;
  padding-left: 10px;
  border: 1px solid #ccc;
  flex: 1;
  font-size: 14px;
  box-shadow: inset 1px 2px 3px rgba(156, 156, 156, 0.1);
}

.search-bar:focus {
  outline: none;
  border: 1px solid #999;
}

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

.search-btn {
  margin-left: -1px;
  height: 39px;
  width: 55px;
  margin-right: 10px;
  border: 1px solid #ccc;
}

.search-btn img {
  margin-top: 4px;
  height: 20px;
  color: #f0f0f0;
}

.voice-search-btn {
  background-color: #f0f0f0;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 50%;
}

.voice-search-btn img {
  margin-top: 4px;
  height: 20px;
}

.current-user {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
}
