.header {
        height: 55px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        z-index: 100;
        position: fixed;
            top: 0;
            left: 0;
            right: 0;
        background-color: white;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: rgb(230, 230, 230);
        }

.left-section{
     display: flex;
    align-items: center;
    }

.hamburger-menu {
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}

.youtube-logo {
    height: 30px;

    }

.middle-section {

    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 450px;
    display: flex;
    align-items: center;
    }


.search-bar {
    flex: 1;
    height: 36px;
    padding-left: 10px;
    font-size: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(192, 192, 192);
    border-radius: 2px;
    box-shadow: inset 1px 2px 3px rgb(0, 0, 0, 0.05);
    width: 0;
    }

.search-bar::placeholder {
    font-family: roboto, arial;
    font-size: 16px;
    font-color: red;
    }



.search-button {
    height: 40px;
    width: 60px;
    background-color: rgb(240, 240, 240);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(192, 192, 192);
    margin-left: -1px;
    margin-right: 10px;
    position: relative;
    }

.voice-search-button {
    height: 40px;
    width: 60px;
    background-color: rgb(240, 240, 240);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(192, 192, 192);
    margin-left: -1px;
    margin-right: 10px;
    position: relative;
    }


.search-button .tooltip,
.voice-search-button .tooltip {
    position: absolute;
    background-color: gray;
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 2px;
    font-size: 12px;
    bottom: -45px;
    opacity: 0;
    transition: opacity .55s;
    pointer-events: none;
    white-space: nowrap;
    }



.search-button:hover .tooltip,
.voice-search-button:hover .tooltip {
    opacity: 1;
    }




.search-icon {
    height: 23px;
    margin-top: 4px;
    }


.voice-search-button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
}


.voice-search-icon {
    height: 24px;
    margin-top: 4px;
    }



.right-section{
     width: 180px;
     margin-right: 24px;
     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;
    }


.notifications-icon-container {
    position: relative;
    }

.notificatios-count {
    position:absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 10px;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 4px;
    width: 10px;
    }

.current-user-pic{
    height: 32px;
    border-radius: 16px;
    }

