.header{
    background-color: white;
    border-bottom: 1px solid rgb(222, 222, 222);
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 57px;
    z-index: 200;
}

.left-section{
    display: flex;
    align-items: center;
}

.hamburger-menu-cont{
    background-color: white;
    border: none;
    padding: 5px 5px 0px 5px;
    margin: 0px 21px 0px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s;
}

.hamburger-menu-cont:hover{
    background-color: rgb(240, 240, 240);
}

.hamburger-menu{
    height: 24px;
}

.youtube-logo{
    height: 20px;
    cursor: pointer;
}

.middle-section{
    flex: 1;
    margin-left: 60px;
    margin-right: 35px;
    max-width: 470px;
    display: flex;
    align-items: center;
}

.search{
    flex: 1;
    display: flex;
    height: 40px;
}

.search-bar{
    height: 100%;
    padding-left: 12px;
    font-size: 16px;
    border: 1px solid rgb(204, 204, 204);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.08);
    flex: 1;
    width: 0;
    outline: none;
}

.search-bar:focus{
    border-color: rgb(26, 115, 232);
}

.search-button{
    height: 41.5px;
    width: 66px;
    background-color: rgb(240, 240, 240);
    border: 1px solid rgb(204, 204, 204);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-right: 5px;
    margin-left: -1px;
    cursor: pointer;
}

.search-icon{
    height: 25px;
    margin-top: 4px;
}

.voice-search-button{
    height: 40px;
    width: 40px;
    background-color: rgb(240, 240, 240);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s;
}

.voice-search-button:hover{
    background-color: rgb(211, 211, 211);
}

.voice-search-icon{
    height: 24px;
    margin-top: 4px;
}

.right-section{
    width: 170px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.create-button{
    background-color: rgb(240, 240, 240);
    border-radius: 20px;
    border: none;
    font-weight: bold;
    width: 85px;
    height: 36px;
    padding-left: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.15s;
}

.create-button:hover{
    background-color: rgb(211, 211, 211);
}

#create-icon{
    font-size: 19px;
    margin-right: 7px;
}

.notification-cont{
    position: relative;
    background-color: white;
    border: none;
    border-radius: 50%;
    padding: 4px 5px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.notification-cont:hover{
    background-color: rgb(240, 240, 240);
}

.notifications-icon{
    height: 23px;
}

.notification-count{
    position: absolute;
    top: 3px;
    right: 5px;
    font-size: 10px;
    color: white;
    background-color: red;
    padding: 0px 3px;
    border-radius: 50%;
}

.profile-pic{
    height: 35px;
    width: 35px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    cursor: pointer;
}