.header{
    height: 65px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    background-color: white;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
}

.header img{
    cursor: pointer;
}

.left-section{
    display: flex;
    align-items: center;
  
   
}

.hamburger-menu{
    height: 20px;
    margin-right: 20px;
    margin-left: 20px;
}

.ytlogo{
    height: 20px;
}

.middle-section{
    flex: 1;
    margin-left: 50px;
    margin-right: 50px;
    max-width: 700px;
    display: flex;
    align-items: center;
}

.search-button{
    width: 50px;
    height: 40px;
    padding: 4px 9px 4px 14px;
    background-color: rgb(248, 248, 248);
    border: solid 1px rgb(204, 204, 204);
    border-radius: 0px 20px 20px 0px;
}



.voice-search-button{
    width: 40px;
    height: 40px;
    margin-left: 30px;
    border-radius: 50%;
    border: none;
}

.searchbar{
    flex: 1;
    height: 40px;
    border: solid 1px rgb(204, 204, 204);
    border-radius: 20px 0px 0px 20px;
    border-right: none;
}



.searchbar::placeholder{
    font-family: 'Roboto' sans-serif;
    font-size: 17px;
    padding-left: 10px;
    color: rgb(146, 146, 146);
}

.right-section{
    width: 300px;
    display: flex;
    align-items: center;
   
}

.create{
  display: flex;
  align-items: center;
  font-style: 'Roboto';
  border: none;
  border-radius: 30px;
  padding: 1px 16px;
  font-size: 16px;
  cursor: pointer;
  gap: 8px;
}

.plus{
    font-size: 40px;
    font-weight: 100;
    
}

.notification{
    height: 26px; 
    margin-right: 60px;
    margin-left: 20px;
}



.notifications-count{
    position: absolute;
    background-color: red;
    color: white;
    top: -3px;
    right: 52px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 4px;
    padding-left: 4px;
    border-radius: 50%;
    font-size: 12px;

}

.bottom-section{
    margin-top: 12px;
    position:fixed;
    background-color: white;
    height: 60px;
    top: 51px; 
    left: 267px;
    right: 0px;
}

.bottom-section button{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 12px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 7px;
    cursor: pointer;
    
}

.allbutton{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: rgb(0, 0, 0);
    color: white;
}

.search-button, .voice-search-button, .notifications{
    display: flex;
    justify-content: center;
    position: relative;
}

.tooltip{
    font-size: 12px;
    position: absolute;
    color: white;
    background-color: gray;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 8px;
    padding-right: 8px;
    bottom: -30px;
    z-index: 100;
    white-space: nowrap;
    opacity: 0;
}

.search-button:hover .tooltip, .voice-search-button:hover .tooltip, .notifications:hover .tooltip{
  opacity: 1;
}
