

.content {
  padding: 0px;
}

/* HEADER*/

.header{
  display: flex;
  flex-direction: row;
  height: 55px;
  justify-content: space-between;
  width: 100%;
  /* overflow: auto; */

  background-color: white;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(255, 214, 214);

  z-index: 20;

  overflow-x: hidden;
}

.search-bar{
  font-size: 14px;
  flex: 1;
  height: 36px;
  font-size: 16px;
  border: 1px solid rgb(251, 224, 231);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: inset 1px 2px 2px rgba(255, 0, 43, 0.055) ;
  width: 0;
  font-family: "Coral Pixels", "National park", Roboto, Arial;
}

.search-bar::placeholder{
  font-size: 16px;
  padding-left: 10px;
}

.left-sec{
  display: flex;
  align-items: center;
  /*justify-content: space-evenly;*/
}

.middle-sec{
  flex: 1;
  margin-left: 70px;
  margin-right: 35px;
  max-width: 500px;
  display: flex;
  align-items: center;
}

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

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

.youtube-logo{
  height: 30px;
}

.search-button{
  height: 40px;
  width: 66px;
  background-color: rgb(254, 247, 249);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(252, 211, 222);
  margin-left: -1px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

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

.search-button .tooltip, .voice-button .tooltip, .upload-icon-container .tooltip{
  position: absolute;
  background-color: grey;
  color: white;
  padding: 4px;
  border-radius: 2px;
  font-size: 12px;
  bottom: -30px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

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

.voice-button{
  margin-left: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 0;
  background-color: rgb(251, 240, 243);
}

.search-icon{
  height: 25px;
}

.voice-icon{
  height: 24px;
}

.upload-icon{
  height: 24px;
}

.youtube-apps-icon{
  height: 24px;
}

.notifications-icon{
  height: 24px;
}

.current-user-pic{
  height: 32px;
  border-radius: 50%;
}

.notification-div{
  position: relative;
}

.notifications-count{
  position: absolute;
  top: -2px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-color: white;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  font-family: Roboto, Arial;
}
