.header{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid rgb(228, 228, 228); 
    z-index: 100;
}
.left-section{
    display: flex;
    align-items: center;
}
.hamburger-menu{
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
    cursor: pointer;
}
.youtube-logo{
    height: 20px;
    cursor: pointer;
}
.middle-section{
    display: flex;
    align-items: center;
    max-width: 500px;
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
}
.search-bar::placeholder{
    font-family: Roboto, Arial;
    font-size: 16px;
    padding-left: 10px;
}
.search-bar{
    flex: 1;
    height: 36px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(179, 178, 178);
    font-size: 16px;
    padding-left: 10px;
    border-radius: 2px;
    box-shadow: inset 1px 2px 2px rgba(0,0,0,0.05);
    width: 0;
}
.search-button{
    height: 40px;
    width: 66px;
    background-color: rgb(245, 245, 245);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(179, 178, 178);
    margin-left: -1px;
    margin-right: 10px;
}
.search-button, .voice-button , .upload-icon-container, .app-icon-container, .notifications-icon-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.user-profile-pic-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-button .tooltip,
.voice-button .tooltip,
.upload-icon-container .tooltip,
.app-icon-container .tooltip,
.notifications-icon-container .tooltip{
    position: absolute;
    background-color: gray;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 2px;
    font-size: 12px;
    bottom: -25px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
    font-family: Roboto, Arial;
}

.search-button:hover .tooltip,
.voice-button:hover .tooltip,
.upload-icon-container:hover .tooltip,
.app-icon-container:hover .tooltip,
.notifications-icon-container:hover .tooltip{
    opacity: 1;
}

.search-icon{
    height: 25px;
}
.voice-button{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(245, 245, 245);
}
.voice-icon{
    height: 24px;
}
.right-section{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    flex-shrink: 0;
}
.upload-icon{
    height: 24px;
}
.youtube-app-icon{
    height: 24px;
}
.notification-icon{
    height: 24px;
}

.notifications-icon-container{
    position: relative;
}
.notifications-count{
    position: absolute;
    top: -2px;
    right: -3px;
    background-color: rgb(200, 0, 0);
    color: white;
    font-family: Roboto, Arial;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-top: 2px;
    border-radius: 10px;
}
.current-user-picture{
    height: 32px;
    border-radius: 20px;
}
.user-profile-pic-container .user-info-container{
    position: fixed;
    top: 50px;
    right: 25px;
    height: auto;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.99);
    z-index: 100;
    opacity: 0;
    display: none;
    transition: opacity 0.15s;
}
.user-profile-pic-container:hover .user-info-container{
    opacity: 1;
    display: flex;
    flex-direction: column;
} 
.user-vertical-container{
    display: flex;
    flex-direction: column;
}
.user-header{
    display: flex;
    flex-direction: row;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: -20px;
    padding-bottom: 10px;
    justify-content: center;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: lightgray;
}
.currentN-user-picture{
    height: 45px;
    border-radius: 25px;
}
.user-header-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
    padding-top: 3px;
    margin-left: 5px;
}
.user-header-info div{
    font-family: Roboto, Arial;
    padding-left: 10px;
}
.user-name{
    font-weight: 500;
    margin-bottom: 10px;
}
.user-manage{
    font-size: 14px;
    cursor: pointer;
    color: rgb(78, 55, 255);
}
.user-icon{
    object-fit: cover;
    object-position: center;
    height: 26px;
    width: 26px;
}
.user-vertical-container-new{
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-left: -20px;
    padding-bottom: 10px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: lightgray;
}
.user-channel, .user-studio, .user-signout{
    display: flex;
    align-items: center;
    padding-bottom: 13px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 13px;
    cursor: pointer;
    transition: background-color 0.15s;
}
.user-channel:hover, .user-studio:hover, .user-signout:hover{
    background-color: rgb(216, 216, 216);
}
.user-channel div, .user-studio div, .user-signout div{
    font-family: Roboto, Arial;
    font-size: 14px;
    margin-left: 15px;
    font-weight: 400;
}
.user-vertical-container-new{
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-left: -20px;
    padding-bottom: 10px;
}