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

.left-section {
    display: flex;
    align-items: center;
}

.middle-section {
    flex: 1;
    margin-left: 70px;
    margin-right: 35px;
    max-width: 500px;
    display: flex;
    align-items: center;
}

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

.search-bar {
    flex: 1;
    height: 36px;
    padding-left: 10px;
    font-size: 16px;
    border-width: 1px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: inset 1px 2px 3px
    rgba(0,0,0,0.05);
    border-style: solid;
    border-color: rgb(192, 192, 192);
    width: 0;

}

.search-bar::placeholder {
    font-family: Roboto, Arial;
    font-size: 16px;
}

.create {
    font-family: Roboto, Arial;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    border: solid;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    border-color:  rgb(192, 192, 192);
    height: 32px;
    border-radius: 20px;
    width: 95px;
    cursor: pointer;
    background-color: rgb(248, 242, 242);
}

.hamburger-menu {
    height: 24px;
    margin-left: 24px;
    margin-right: 24px;
}

.youtube-logo {
    height: 20px;
}

.search-btn {
    height: 39px;
    width: 66px;
    background-color: rgb(241,241,241);
    border-width: 1px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-style: solid;
    border-color: rgb(192, 192, 192);
    margin-left: -1px;
    margin-right: 10px;
    position: relative;
}

.search-btn, .voice-search-btn,
.upload-icon-container, .notifi-icon-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-btn .tooltip,
.voice-search-btn .tooltip,
.upload-icon-container .tooltip,
.notifi-icon-container .tooltip {
    font-family: Roboto, Arial;
    position: absolute;
    background-color: gray;
    color: white;
    padding-top: 4px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 4px;
    border-radius: 4px;
    font-size: 12px;
    bottom: -30px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
}

.search-btn:hover .tooltip,
.voice-search-btn:hover .tooltip,
.upload-icon-container:hover .tooltip,
.notifi-icon-container:hover .tooltip {
    opacity: 1;
}

.search-icon {
    height: 24px;
}

.voice-search-btn {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: rgb(245, 245, 245);
}

.voice-search-icon {
    height: 25px;
}

.upload-icon {
    height: 24px;

}

.yt-apps-icon {
    height: 24px;
}

.notifi-icon {
    height: 24px;
}

.notifi-icon-container {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    margin-right: 6px;
}

.notifi-cnt {
     position: absolute;
     top: -2px;
     right: -5px;
     background-color: rgb(200, 0, 0);
     color: white;
     font-family: Roboto, Arial;
     font-size: 11px;
     padding-top: 2px;
     padding-left: 5px;
     padding-right: 5px;
     padding-bottom: 2px;
     border-radius: 10px;

}

.user-icon {
    height: 32px;
    border-radius: 16px;
}