body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin-top: 90px;
  margin-left: 100px;
  margin-right: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
p {
  margin: 0;
}

.youtube-header {
  height: 56px;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  padding: 0 16px;
  background-color: white;
  /* box-shadow: 2px 2px 2px rgb(234, 234, 234) ; */
}

.left-section {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.three-line {
  width: 40px;
  height: 40px;
  padding: 8px;
}
.youtube-logo-div {
  padding: 18px 14px 18px 16px;
  height: 56px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.youtube-logo-img {
  flex: 1;
  width: 90px;
  height: 20px;
}
.IN {
  position: relative;
  margin: 0;
  bottom: 10px;
  color: grey;
  font-weight: lighter;
}
.middle-section {
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle-left-div {
  height: 40px;
  width: 90%;
  display: flex;
}

.input-search {
  width: 90%;
  margin: 0 0 0 40px;
  padding: 0 4px 0 16px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-style: solid;
  border-width: 0.5px;
  font-size: 16px;
  font-weight: lighter;
}
.search-button {
  width: 10%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-style: solid;
  border-width: 0.5px;
  background-color: rgb(245, 241, 241);
  padding: 0 4px 4px 0;
}
.search-button:hover {
  border-width: 1px;
  background-color: rgb(230, 229, 229);
}
.middle-right-div {
  height: 40px;
  width: 40px;
  width: 10%;
  border-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mic-div {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgb(222, 220, 220);
}
.mic-div:hover {
  background-color: rgb(173, 173, 173);
}

/* Header Right section */
.right-section {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.create-div {
  height: 40px;
  width: 40px;
  padding: 8px;
}
.create-svg-div {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}
.create-svg-div:hover {
  background-color: rgb(204, 204, 204);
}

.profile-div {
  width: 68px;
  height: 40px;
}

.profile-img-div {
  width: 60px;
  height: 34px;
  padding: 1px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}


/* sidebar */
.youtube-sidebar {
  position: fixed;
  width: 72px;
  height: 100%;
  top: 56px;
  left: 0;
  padding: 0 4px;
  display: flex;
  flex-direction: column; 
}
.Home-sidebar,
.Shorts-sidebar,
.Subscription-sidebar,
.Library-sidebar {
  width: 74px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0 14px 0;
}
.Home-sidebar:hover,
.Shorts-sidebar:hover,
.Subscription-sidebar:hover,
.Library-sidebar:hover{
    background-color: rgb(203, 203, 203);
    border-radius: 8px;
}

.home-svg-div{
    width: 24px;
    height: 24pxx;
}
.Home-text{
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

/*  Internal Contents */

.All-videos-div{
  display: flex;
  flex-direction: column;
}

.videos-div{
  margin-bottom: 50px;
  display: flex;
  justify-content: space-around;
}

.data-div{
  width: 30%;
  height: 350px;
  display: flex;
  flex-direction: column;
}
.thumbnail-div{
  width: 100%;
  height: 65%;
}
.thumbnail-image{
  width: 100%;
  height: 100%;
}
.video-data{
  width: 100%;
  height: 35%;
  display: flex;
}
.channel-profile-div{
  width: 15%;
  display: flex;
  
  
}
.channel-profile-image{
  width: 50px;
  height: 50px;
  margin-top: 10px;
  border-radius: 50%;
}
.video-texts-div{
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  
}
.video-name{
  width: 100%;
  /* height: 50%; */
  font-size: 18px;
  display: flex;
  align-items: center;
  font-family:  Roboto ,Arial, sans-serif;
  font-weight: 500px;
  padding-top: 15px;
}
.video-name-text{
  width: 310px;
}
.channel-name{
  width: 100%;
  height: 25%;
  display: flex;
  align-items: center;
  font-family:  Roboto ,Arial, sans-serif;
  font-weight: 500px;
  color: rgb(124, 124, 124);
}
.video-stats{
  width: 100%;
  height: 25%;
  display: flex;
  font-family:  Roboto ,Arial, sans-serif;
  font-weight: 500px;
  color: grey;
}