.header{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content:space-between ;
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    z-index: 100;
    background-color: white;
    border-bottom-style:1px ;
    border-style: solid;
    border-bottom-color:rgb(245, 243, 243) ;
    

}
.left-section
{
    
    
    display: flex;
    align-items: center;
    
}
.hamburger-menu{
    height: 24px;
    margin-left: 24px;
    margin-right: 20px;
}
.youtube-logo
{
    height: 20px;
}
.middle-section
{
    
    flex: 1;
    margin-left:70px ;
    margin-right: 40px;
    max-width: 500px;
    display: flex;
    align-items: center;

}
.search-bar{
    flex: 1;
    height: 36px;
    padding-left:10px ;
    font-size: 15px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(176, 168, 168);
    border-radius: 2px;
    box-shadow: inset 1px 2px 5px rgba(0, 0,0,0);
    width: 0;

    

}

.search-bar::placeholder{
    font-family: Roboto, Arial;
    font-size: 17px;
}
.search-button{
    height: 39px;
    width: 65px;

    background-color: rgb(245, 245, 245);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(176, 168, 168) ;
    margin-left: -1px;
    position: relative;

    

}
.search-icon{
    height: 26px;
    margin-top: 3px;
}
.voice-search-button{
    height: 39px;
    width: 40px;
    margin-left: 10px;
    border-radius: 20px;
    border: none;
    background-color: rgb(245, 245, 245);
}
.voice-icon{
    height:24px;
    margin-top: 4px;
    
}

.right-section{
    
    width: 180px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;

    
}
.upload-icon{
    height: 24px;
}
.youtube-apps-icon{
    height: 24px;
}
.notifications-icon{
    height: 24px;

}
.notification-icon-container
{
    position: relative;
}
.notification-count{
    position: absolute;
    top: -2px;
    left: 11px;
    background-color: rgb(207, 0, 0);
    color: white;
    font-family: Roboto,Arial;
    font-size: 11px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 2px;
    padding-top: 2px;
    border-radius: 10px;

}
.current-user-picture{
    height: 32px;
}
.search-button .tooltip,
.voice-search-button .tooltip,
.uploar-icon-container .tooltip,
.yooutube-appsss .tooltip,
.notification-icon-container .tooltip

{
    font-family: Roboto,Arial;
    position:absolute;
    background-color: grey;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 3px;
    font-size: 12px;
    bottom: -30px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
    

}
.search-button:hover .tooltip,
.voice-search-button:hover .tooltip,
.uploar-icon-container:hover .tooltip,
.yooutube-appsss:hover .tooltip,
.notification-icon-container:hover .tooltip,
.profile-container:hover .tooltip

{
    opacity: 1;

}
.search-button, 
.voice-search-button,
.uploar-icon-container,
.yooutube-appsss,
.notification-icon-container,
.Profile-container{
    display: flex;
    justify-content: center;
    position: relative;

}