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

.left-section {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.middle-section {

    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.right-section {
    width: 180px;
    margin-left: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
    flex-shrink: 0;
}

.hamburger-menu {
    width: 25px;
    height: 25px;
    margin: 0px 20px;
}

.youtube-logo {
    height: 20px;
}

.search-icon {
    height: 24px;
    width: 24px;
    margin-top: 2px;
}

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

.search-button {
    height: 38px;
    width: 64px;
    border-left: none;
    border-style: solid;
    border-radius: 2px;
    border-width: 1px;
    border-color: rgb(204, 204, 204);
    margin-left: -1px;
    position: relative;

}

.voice-button {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    margin-left: 10px;
    background-color: rgb(247, 247, 247);
}

.search {
    height: 34px;
    border-color: rgb(204, 204, 204);
    border-style: solid;
    flex: 1;
    box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    border-width: 1px;
    border-radius: 2px;
    width: 10px;
    /* border: 1px solid rgb(204, 204, 204); */

}

.search::placeholder {
    font-family: roboto, arial;
    font-size: 16px;
    padding-left: 10px;
}

.right-icons {
    height: 24px;
    width: 24px;
}

.right-buttons {
    width: 32px;
    height: 30px;
    background-color: transparent;
    border: none;
    position: relative;

}

.account {
    border-radius: 14px;
    height: 28px;
    width: 28px;

}

.notifications-count {
    position: relative;
}

.count {
    position: absolute;
    background-color: red;
    color: white;
    font-size: 8px;
    border-radius: 10px;
    padding: 2px 4px;
    align-items: center;
    top: 0px;
    right: -1px;
    font-family: roboto, arial;
}

.search-button .tooltip {
    position: absolute;
    bottom: -35px;
    left: 3px;
    background-color: grey;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

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

.voice-button {
    position: relative;
}

.voice-button .tooltip {
    position: absolute;
    bottom: -32px;
    left: -50px;
    background-color: grey;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    width: 130px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

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

.upload-icon {
    position: relative;
}

.upload-icon:hover .tooltip {
    opacity: 1;
}

.right-buttons .tooltip {
    position: absolute;
    bottom: -38px;
    left: -15px;
    background-color: grey;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.yt-apps-icon {
    position: relative;
}

.yt-apps-icon .tooltip {
    position: absolute;
    bottom: -38px;
    left: -35px;
    width: 80px;
    background-color: grey;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.yt-apps-icon:hover .tooltip {
    opacity: 1;
}

.notifications-icon {
    position: relative;
}

.notifications-icon .tooltip {
    position: absolute;

    bottom: -38px;
    left: -23px;
    background-color: grey;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
}

.notifications-icon:hover .tooltip {
    opacity: 1;
}