/*header section*/
.header{
    position: fixed;
    background-color: white;
    height: 110px;
    right: 0;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 50;
}


/*left section*/
.left-section{
    width:200px;
    display: flex;
    flex-direction: row;
}
.hamburger-menu{
    width: 26px;
    margin-left: 20px;
}
.hamburger-menu:hover{
    cursor: pointer;
    background-color: lightgray;
    border-radius: 26px;
}
.youtube-logo{
    width: 100px;
    margin-left: 20px;
    cursor: pointer;
}


/*middle section*/
.middle-section{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.searchbar{
    width: 50%;
    height: 36px;
    border: 2px solid #eaeaea;
    border-radius: 15px;
    box-shadow: inset rgba(149,149,149,0.66);
}
.search-icon{
}
.search-icon:hover{
    cursor: pointer;

}
.voice-search-icon{
}


/*right section*/
.right-section{
    width: 200px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.upload{
    width: 26px;
}
.youtube-apps{
    width: 26px;

}
.notification{
    width: 26px;

}
.channel-profile{
    width: 34px;

}


/* header buttons*/
.search-btn{
    width: 44px;
    margin-left: -88px;
    margin-right: 20px;
}
.voice-search-btn{
    width: 44px;
}

.header-btn{
    border: none;
    border-radius: 6px;
    color: black;
    background-color: #eaeaea;
    height: 35px;
    font-size: 14px;
    padding: 10px;
}