.headers-container{
    display:flex;
    flex-direction:column;
}
.header{
    display: flex;
    
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-top: 2px;
    padding-bottom: 5px;
    background-color: rgb(33, 33, 33);
    border-bottom-style: solid;
    border-bottom-color: rgb(51, 51, 51);
    border-bottom-width: 1px;
    flex-shrink: none;
    
    position:fixed;
    inset: 0;
    z-index: 99;
    }
   .header-right{
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    align-items: center;
    padding-left: 2rem;
    padding-top: 0.5rem;
   }
   .header-right img{
    cursor: pointer;
   }
   .header-middle{
    display: flex;
    flex-direction: row;
    margin: 2px 2px 0 2px;
   }
   .header-middle button{
    cursor: pointer;
   }
   .header-left{
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
    margin-right: 2rem;
    padding-top: 0.5rem;
    
   }
   .header-left img{
    cursor: pointer;
   }
   .hamburger-menu{
    height: 19px;
    width: 19px;
    cursor: pointer;
   }
   .hamburger-menu-button{
    background-color: rgb(33,33,33);
    border-style: solid;
    border-radius: 3px;
    padding-top: 4px;
    border-color: rgb(33, 33, 33);
    transition: border-color 0.4s
   }
   .youtube-logo{
    height: 22px;
    width: 95px;
    cursor: pointer;
   }
   .searchbar{
    background-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    border-color: rgb(51, 51, 51);
    height: 37px;
    max-width: 900px;
    min-width: 550px;
    
    padding-left: 8px;
    font-size: 15px;
    color: white;
   }
   .searchbar:focus{
    outline: none;
   }
   .searchbar::placeholder{
    font-size: 16px;
   }
   .search-icon-button{
    background-color:rgb(51, 51, 51);
    height:41px ;
    width: 65px;
    border: none;
    margin-right: 13px;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    margin-left: -2px;
   }
   .search-icon{
    padding-top:3px;
    height: 25px;
    width: 25px;
   }
   .voice-search-button{
    background-color: black;
    border-radius: 20px;
    padding-top: 6px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 3px;
   }
   .voice-search{
    height: 23px;
    width: 22px;
   }
   .upload{
    height: 25px;
    width: 25px;
    padding-top: 3px;
   }
   .header-left-notification-container{
    position: relative;
   }
   .notification-count{
    position: absolute;
    top: -1px;
    right: -2px;

    font-size: 10px;
    background-color: red;
    padding: 2px 4px 2px 4px;
    border-radius: 20px;
   }
   .notification{
    height: 22px;
    width: 22px;
    padding-top: 5px;
   }
   .usermain{
    height: 32px;
    width: 32px;
    border-radius: 20px;
   }
