.header {
    height: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;

    background-color: white;
    padding-bottom: 1px;
    margin: 0;
    border-bottom: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(204, 203, 202);
  


    
}

.section-1 {
    width: 200px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    
}

.section-2 {
    
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 600px;
    align-items: center;
    display: flex;


} 

.section-3 {
    
    width: 300px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.hamburger {
    width:40px;
    margin-right: 30px;
    margin-left: 18px;
}

.youtube-logo {
    width: 90px;
    margin-left: 10px;
}

.search-box { 
    flex: 1 ;
    height: 39px;
    padding-left: 10px;
    font-size: 18px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(190, 190, 190);
    border-radius: 3px;
    box-shadow: inset 1px 2px 5px rgb(240, 239, 239);
    
}

.search-box::placeholder {
    padding-left: 6px;
    font-size: 15px;
    font-family: Roboto, Oxygen ;
}

.search-button {
        
        width: 63px;
        height: 43px;
        margin-left: -2px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(190, 189, 189);
        padding-bottom: 0.5px;

        position: relative;

}
 
/* tooltip combined with selectors */

.search-button .tooltip,
.mic-button .tooltip,
.addnew .tooltip,
.g-tooltip .tooltip,
.b-tooltip .tooltip{
    position: absolute;
    background-color: rgb(92, 92, 92);
    color: white;
    padding: 4px 8px 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    bottom: -30px;
    opacity: 0;
    transition: 0.05;
    pointer-events: none;
    white-space: nowrap;


}

.search-button:hover .tooltip,
.mic-button:hover .tooltip,
.addnew:hover .tooltip,
.g-tooltip:hover .tooltip,
.b-tooltip:hover .tooltip{
    opacity: 1;
}



.search {
    width: 30px;
    
}

.mic {
    width:30px;
    height:30px;
    margin-top: 5px; 
    padding: 3 3 3 3;
}

.mic-button {
    width: 47px;
    height: 44px;
    border-radius: 50%;
    margin-left: 9px;
    border: none;
    position: relative;
}


.search-button,
.mic-button,
.addnew,
.g-tooltip,
.b-tooltip{
    display: flex;
    justify-content: center;
    align-items: center;
}


.addnew,
.g-tooltip,
.b-tooltip{
    position: relative;
      
}

.addvideo {
    width:30px;
}


.grid-icon {
    width: 30px;
}

.bell-icon {
    width: 30px;
}

.profile {
    width:45px;
    height: 35px;
    border-radius: 50%;
}

.notification{
    position: relative;
}

.number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    font-family: arial, Roboto;
    background-color: rgb(190, 8, 8);
    color: aliceblue;
    border-radius: 50%;
    padding: 2px 5px 1px 5px;
}

