.header {
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: white;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(226, 226, 226);
    z-index: 1000;


}

.left-section {
    display: flex;
    align-items: center;

}

.hamber-menu {
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}

.youtube-logo {
    height: 20px;

}

.middle-section {
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 500px;
    display: flex;
    align-items: center;
}


.search-bar {
    flex: 1;
    height: 16px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid  rgb(204, 204, 204) ;
    border-radius: 2px;
    box-shadow: px 2px 3px rgba(0, 0, 0.05);
    width: 0;

}

.search-bar::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.search-button {
    height: 38px;
    width: 66px;
    background-color: rgb(240, 240, 240);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    margin-left: -1px;
    margin-right: 10px;


}

.search-button,
.voice-search-button,
.upload-icon-container,
.youtubeapps-icon-container,
.notificationicon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.search-button .tooltip,
.voice-search-button .tooltip,
.upload-icon-container .tooltip,
.youtubeapps-icon-container .tooltip,
.notificationicon-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: -30px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
}

.search-button:hover .tooltip,
.voice-search-button:hover .tooltip,
.upload-icon-container:hover .tooltip,
.youtubeapps-icon-container:hover .tooltip,
.notificationicon-container:hover .tooltip {
    opacity: 1;
}

.search-icon {
    height: 25px;
}

.voice-search-button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(245, 245, 245);

}

.voice-search-icon {
    height: 24px;
}

.right-section {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    flex-shrink: 0;
}

.upload-icon {
    height: 24px;
}

.youtubeapps-icon {
    height: 24px;
}

.notification-icon {
    height: 24px;
}

.notificationicon-container {
    position: relative;
}

.notification-countnumber {
    position: absolute;
    top: -2px;
    right: -5px;
    background-color: rgb(160, 19, 19);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 10px;
}

.unnamedown-icon {
    height: 38px;
    border-radius: 20px;
}