.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(215, 209, 209);
    z-index: 100;
}

.left-section {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}

.youtube-logo {
    height: 20px;
}

.center-section {
    flex: 1;
    margin-left: 70px;
    margin-right: 30px;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.search-bar {
    flex: 1;
    height: 37px;
    padding-left: 10px;
    font-size: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(233, 231, 231);
    border-radius: 2px;
    box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
    width: 0;
}

.search-bar::placeholder {
    font-family: Roboto, Arial;
    font-size: 16px;

}

.search-btn {
    height: 41px;
    width: 60px;
    background-color: rgb(234, 234, 234);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(195, 187, 187);
    margin-left: -1px;
    margin-right: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-btn .tooltip {
    background-color: rgb(133, 133, 133);
    color: white;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 2px;
    font-family: Roboto, Arial;
    font-size: 12px;
    position: absolute;
    bottom: -24px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.search-btn:hover .tooltip {
    opacity: 1;
}

.voice-search-btn .tooltip {
    background-color: rgb(133, 133, 133);
    color: white;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 2px;
    font-family: Roboto, Arial;
    font-size: 12px;
    position: absolute;
    bottom: -24px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.voice-search-btn:hover .tooltip {
    opacity: 1;
}


.search-icon {
    height: 25px;
}

.voice-search-btn {
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 20px;
    background-color: rgb(249, 246, 246);
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-search-icon {
    height: 24px;
}

.right-section {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    flex-shrink: 0;
}

.upload-img {
    height: 24px;
}

.youtube-apps-icon {
    height: 24px;
}

.notifications {
    height: 24px;
}

.my-channel {
    height: 32px;
    border-radius: 16px;
}

.notifications-container {
    position: relative;
}

.notifications-badge {
    position: absolute;
    font-family: Roboto, Arial;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;

    top: -2px;
    right: -5px;
    background-color: rgb(191, 7, 7);
    color: white;
    border-radius: 10px
}