body{
    margin-left: 0%;
    margin-right: 0%;  
    background-image: linear-gradient(white,rgb(244, 190, 255));
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 0;
}


.header{
    display: flex;
    gap: 20px;
    background-color: black;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0px 0px 10px 10px;
}

.nav a{
    color: white;
    text-decoration: none;
    transition: all 100ms;
}

.nav-Right a{
    color: white;
    text-decoration: none;
    transition: all 100ms;
}

.nav a:hover{
    color: black;
    background-color: white;
    border-radius: 20px;
    text-decoration: underline;
    font-size: larger;
    transition: all 100ms;
}

.nav-Right a:hover{
    color: black;
    background-color: white;
    border-radius: 20px;
    text-decoration: underline;
    font-size: larger;
    transition: all 100ms;
}

.header .nav-Right{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap:10px;
}

.header .nav{
    display: flex;
    align-items: center;
    gap:10px;
}

.header .nav .search-bar{
    display: flex;
}

.header .nav .search-bar button{
    width: 30%;
    padding: 0%;
    border-radius: 0px 10px 10px 0px;
    border-style: none;
}


.header .nav .search-bar input{
    font-size: large;
    width: 300%;
    border-radius: 10px 0px 0px 10px;
    border-style: none;
}

.videos {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.videoCard {
    display: flex;
    flex-direction: column; /* stack thumbnail + details vertically */
    gap: 10px;
    flex: 0 0 auto; /* keeps it from shrinking */
    width: 250px;
    transition: all 200ms;
}

.videoCard:hover{
    display: flex;
    flex-direction: column; /* stack thumbnail + details vertically */
    gap: 10px;
    flex: 0 0 auto; /* keeps it from shrinking */
    width: 300px;
    transition: all 200ms;
}

.videoCard .thumbnail {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.videoCard .details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.videoCard p {
    width: 100%; /* fill parent width */
    margin: 0;   /* optional */
}


.videoCard a{
    color: black;
    text-decoration: none;
}

.author{
    opacity: 50%;
}

.topPageChannel img{
    width: 10%;
    border-radius: 50%;
}
.topPageChannel{
    display: flex;
    gap: 10px;
    align-items: center;
}

.user img{
    border-radius: 50%;
}

.pfp{
    width: 5%;
    border-radius: 50%;
}

.interactions{
    display: flex;
    width: 20%;
    height: 4%;
}

.interactions img{
    width: 20%;
}

.userResult .pfp{
    width: 10%;
}

.userResult{
    display: flex;
    align-items: center;
}

.comment button{
    background-color: red;
    font-size: larger;
    float: right;
    border-radius: 10px;
    border-style: none;
}