.header {
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    Z-index: 100;
    background-color: white;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(222, 222, 222);
}
.left-section {
    display: flex;
    align-items: center;
}
.hamburger-menu {
    height: 25px;
    margin-left: 20px;
    margin-right: 20px;
}
.youtube-logo {
    height: 20px;
}
.middle-section {
    display: flex;
    flex: 1;
    align-items: center;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 500px;
}
.search-bar {
    flex: 1;
    height: 36.5px;
    padding-left: 10px;
    font-size: 16px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 2px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.03);
    width: 0;
}
.search-bar::placeholder {
    font-size: 16px;
}
.search-button {
    height: 40px;
    width: 60px;
    background-color: rgb(247, 247, 247);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(204, 204, 204);
    margin-left: -1px;
    margin-right: 10px;
    cursor: pointer;
}
.search-button,
.voice-search-button,
.upload-icon-container,
.youtube-apps-container,
.notifications-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.search-button .tooltip,
.voice-search-button .tooltip,
.upload-icon-container .tooltip,
.youtube-apps-container .tooltip,
.notifications-icon-container .tooltip {
    position: absolute;
    background-color: gray;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    bottom: -30px;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
}
.search-button:hover .tooltip,
.voice-search-button:hover .tooltip,
.upload-icon-container:hover .tooltip,
.youtube-apps-container:hover .tooltip,
.notifications-icon-container:hover .tooltip {
    opacity: 1;
}
.search-icon {
    height: 25px;
}
.voice-search-button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(248, 248, 248);
    cursor: pointer;
}
.voice-search-icon {
    height: 24px;
}
.right-section {
    width: 180px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.upload-icon {
    height: 24px;
    cursor: pointer;
}
.youtube-apps-icon {
    height: 24px;
    cursor: pointer;
}
.notifications-icon {
    height: 24px;
    cursor: pointer;
}
.notifications-icon-container {
    position: relative;
}
.notifications-count {
    position: absolute;
    background-color: rgb(204, 0, 0);
    top: -2px;
    right: -5px;
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 10px;
}
.profile-icon {
    height: 32px;
    border-radius: 16px;
    cursor: pointer;
}