.header {
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color:rgb(240, 240, 240);
    z-index: 100;
}
.left-section {
    display: flex;
    align-items: center;
}
.hamburger-menu {
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}
.youtube-logo {
    height: 24px;
}
.middle-section {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 500px;
}
.search-button {
    height: 40px;
    width: 66px;
    background-color: rgb(240, 240, 240);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(192 192 192);
    margin-left: -1px;
    border-radius: 2px;
    margin-right: 10px;
    cursor: pointer;
}
.search-button,
.voice-search-button,
.upload-icon-container,
.apps-icon-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-button .tooltip , 
.voice-search-button .tooltip , 
.upload-icon-container .tooltip ,
.apps-icon-container .tooltip ,
.notifications-icon .tooltip{
    position: absolute;
    background-color: gray;
    font-family: cursive;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 8px;
    padding-left: 8px;
    border-radius: 2px;
    font-size: 12px;
    bottom: -30px;
    opacity: 0;
    transition: opacity 0.155s;
    pointer-events: none;
    white-space: nowrap;
}
.search-button:hover .tooltip ,
.voice-search-button:hover .tooltip ,
.upload-icon-container:hover .tooltip ,
.apps-icon-container:hover .tooltip ,
.notifications-icon:hover .tooltip {
    opacity: 1; 
}
.search {
    height: 25px;
    margin-top: 4px;
}
.voice-search-button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(245,245,245);
    cursor: pointer;
}
.voice-search {
    height: 24px;
    margin-top: 4px;
}
.searchbar {
    flex: 1;
    height: 36px;
    padding-left: 12px;
    font-size: 16px;
    border: 1px;
    border-style: solid;
    border-color: rgb(192 192 192);
    border-radius: 2px;
    box-shadow:inset 1px 2px 3px rgba(0, 0, 0, 0.05);
    width: 0;
}
.searchbar::placeholder {
    font-family: cursive;
    font-size: 16px;
}
.right-section {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    flex-shrink: 0;
}
.icons {
    height: 24px;
    cursor: pointer;
}
.apps {
    height: 24px;
    cursor: pointer;
}
.notifications {
    height: 24px;
    cursor: pointer;
}
.profile {
    height: 32px;
    border-radius: 16px;
    cursor: pointer;
}