/*css for all body*/
body {
    margin: 0;
    padding-top: 95px;
    padding-left: 118px;
    background-color: rgb(221, 219, 219);
    padding-bottom: 3000px;
    padding-right: 30px;
}
/*css for hearder main contianer*/
.header {
    display: flex;
    flex-direction: row;
    height: 70px;
    position: fixed;
    border-bottom: 1px solid black;
    top: 0;
    left: 0;
    right: 0;
    background-color: white

}
/*css for menu and youtube logo container*/
.youtube_logo_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 90px;
}
/*css for menu button*/
.menu {
    height: 30px;
    margin-left: 12px;
    margin-right: 25px;
}
/*css for youtube logo*/
.youtube_logo{
    height: 30px;
}
/*css for the search bar cointainer*/
.search_bar_container {
    display: flex;
    flex: 1;
    align-items: center;
    margin-right: 50px;
} 
/*css for the search input box*/
.youtube_search {
    width: 100%;
    min-width: 0;
    height: 42px;
    max-width: 600px;
    display: flex;
    flex: 1;
    padding-left: 14px;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    outline: none;
    border-color: rgb(57, 57, 57);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
.youtube_search::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
/*css for the search icon button*/
.search_icon_button {
    height: 46px;
    width: 70px;
    margin-left: -3px;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(57, 57, 57);
}
/*css for the search icon img*/
.search_icon {
    height: 30px;
}
/*css for the voice icon button*/
.voice-search-icon_button {
    height: 47px;
    width: 46px;
    border: none;
    border-radius: 23px;
    margin-left: 18px;
}
/*css for prfile container*/
.profile_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 250px;
    margin-right: 22px;
}
/*css for prfile container img*/
.profile_container img {
    height: 40px;
    border-radius: 20px;
}