.header {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgb(218, 218, 218);
  position: fixed;
  background-color: white;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  z-index: 100;
}

.left-section {
  display: flex;
  align-items: center;
}
.middle-section {
  flex: 1;
  margin-left: 70px;
  margin-right: 35px;
  max-width: 500px;
  display: flex;
  align-items: center;
}
.right-section {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  flex-shrink: 0;
  gap: 1px;
}
.search-bar {
  flex: 1;
  height: 35px;
  padding-left: 12px;
  padding-right: 12px;
  width: 0px;
  font-size: 16px;
  border-style: solid;
  border-color: rgb(218, 218, 218);
  border-radius: 2px;
  border-width: 1px;
  box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
}
.search-bar::placeholder {
  font-family: Roboto, Arial;
}

.search-button {
  border-style: solid;
  border-width: 1px;
  height: 39px;
  border-color: rgb(218, 218, 218);
  margin-left: -1px;
  min-width: 50px;
  cursor: pointer;
}
.search-icon {
  height: 24px;
  margin-top: 4px;
}

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

.upload-icon,
.youtube-apps-icon,
.notification-icon {
  height: 24px;
  border: none;
  cursor: pointer;
}
.mychannel-icon {
  height: 32px;
  border-radius: 16px;
  cursor: pointer;
}
.notification-count {
  position: absolute;
  top: -2px;
  right: -5px;
  background-color: rgb(214, 3, 3);
  font-size: 10px;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 10px;
  border-color: rgb(255, 255, 255);
  border-width: 1.5px;
  border-style: solid;
  cursor: pointer;
}
.sidebar {
  position: fixed;
  background-color: rgb(255, 255, 255);
  top: 50px;
  bottom: 0px;
  left: 0px;
  width: 72px;

  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 200;
}

.sidebar-link {
  height: 74px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-link:hover {
  background-color: rgb(231, 231, 231);
  cursor: pointer;
}
.sidebar-link img {
  height: 24px;
}
.sidebar-link div {
  font-family: Roboto, Arial;
  font-size: 10px;
  text-align: center;
}
