*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
.navbar{
   
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: white;
    
    
}
/**Left**/
.Yt-logo{
    width: 128px;
    display: flex;
    margin-left: 0;
   
}
.btn-menu{
    font-size: 20px;
    margin-left: 20px;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    border: none;
    background-color: white;
    cursor: pointer;
   
}
.btn-menu:hover{
    background-color: rgb(240, 239, 239) ;
}
/**Center**/
.searchbar-btn{

    display: flex;
    height: 42px;
    display: flex;
    justify-content: center;
    
    
}
.search-bar{
    border-radius: 22px 0px 0px 22px;
    font-size: 16px;
    padding-left: 15px;
    margin-left: 210px;
    width: 500px;
    border: 0.50px solid rgb(187, 187, 187);
}
.btn-search{
    cursor: pointer;
    width: 70px;
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    border: 0.50px solid rgb(187, 187, 187);
    border-radius: 0px 22px 22px 0px;
    background-color:rgb(247, 246, 246) ;
    outline: none;
}

/**Side-Navbar**/
.side-navbar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 230px;
    height: 100%;
    padding: 15px;
    background-color: white;
}
.Home{
    margin-bottom: 3px;
    border: none;
    width: 100%;
    height: 38px;
    align-items: start;
    text-align: start;
    padding-left: 14px;
    gap: 25px;
    display: flex;
    align-items: center;
    border-radius:11px ;
    cursor: pointer;
    background-color: #f5f5f5#f5f5f5;
}
.home>p{
    font-size: 0.85rem;
}
.home-btn{
    font-size: 1.2rem;
    
}
.full{
    margin-bottom: 3px;
    border: none;
    width: 100%;
    height: 38px;
    align-items: start;
    text-align: start;
    padding-left: 14px;
    gap: 25px;
    display: flex;
    align-items: center;
    border-radius:11px ;
    cursor: pointer;
    background-color: transparent;
}
.Full-btn{
    font-size: 1.4rem;
}
.full>p{
    font-size: 0.85rem;
}
.full:hover{
    background-color: #f5f5f5;
}
hr{
    background-color: #ffffff;
    font-size: 0.60rem;
}

/**Right Navbar**/
.right-btn{
   display: flex;
   margin-left: 80px;
   gap: 15px;
   padding: 5px;
   column-gap: 18px;
}

#logo-channel{
    padding-left: px;
    margin-top: 5px;
    top: 0;
    
}
    
/**Content**/
.content{
    width: calc(100% - 230px) ;
    margin-top: 60px;
    margin-left:230px ;
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
    padding: 24px;
    font-family: sans-serif;
    text-transform: capitalize;
    cursor: pointer;
    
    
}
.vid{
    width: 32%;
    
    
}
.video-assests{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 12px;
}
.thumbnail{
    border-radius: 14px;
}
.logo{
    margin-top: 8px;
    border-radius: 50%;
}
.video-title{
    margin-top: 8px;
}
.channel-name{
            margin-top: 5px;
            font-size: 0.88rem;
            color: rgb(61, 61, 61);
}
.video-views{
    margin-top: 3px;
    color: rgb(61, 61, 61);
    font-size: 0.87rem;

}
@media screen and (max-width: 1075px) {
    .side-navbar {
        display: none;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }

    .search-bar {
        width: 60%;
        margin-left: 10px;
    }

    .vid {
        width: 48%;
    }

    .right-btn {
        margin-left: auto;
    }
}


@media screen and (max-width: 768px) {
    .search-bar {
        width: 55%;
        font-size: 14px;
    }

    .btn-search {
        width: 50px;
        font-size: 1em;
    }

    .vid {
        width: 100%;
    }

    .video-title {
        font-size: 1rem;
    }

    .channel-name,
    .video-views {
        font-size: 0.85rem;
    }

    .right-btn {
        gap: 8px;
    }
}


@media screen and (max-width: 480px) {
    .searchbar-btn {
        flex-direction: column;
        align-items: stretch;
        padding: 5px;
    }

    .search-bar {
        width: 100%;
        margin: 0;
        border-radius: 20px;
    }

    .btn-search {
        width: 100%;
        border-radius: 20px;
        margin-top: 5px;
    }

    .vid {
        width: 100%;
    }

    .video-title {
        font-size: 0.9rem;
    }

    .channel-name,
    .video-views {
        font-size: 0.8rem;
    }

    .right-btn {
        display: none; 
    }
}