    .video-preview{
      width:100%;
      background-color:white;
      border-radius:6px;
      padding: 6px;
      padding-bottom: 8px;
      transition: background-color 0.2s;
    }
    .video-preview:hover{
      background-color: #e6e6e6;
    }
    
    .video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      row-gap:40px;
      column-gap: 16px;
      padding: 20px;
      max-width: 1200px;
      margin: 0;
    }
  
    .thumbnail-container{
      width: 100%;
      height:180px;
      position: relative;
    }
    .video-time{
      position: absolute;
      bottom: 10px;
      right: 10px;
      padding: 4px;
      background-color: black;
      color: white;
      border-radius:2px;
      font-weight: 500;
      font-size: 12px;
    }
    .thumbnail{
      width: 100%;
      height:100%;
      object-fit: cover;
      border-radius:8px;
    }
    .channel-logo-container{
      display: inline-block;
      width: 40px;
      height:40px;
      margin:0px;
      
    }
    .channel-logo{
      width: 100%;
      height: 100%;
      border-radius:50%;
      object-fit: cover;
      
    }
    .video-details{
      display: inline-block;
      width: 250px;
      margin-left: 10px;
    }
    .video-info{
      display: flex;
      width: 300px;
      margin-top: 10px;
    }
    .video-title{
      font-weight: bold;
      margin:0px;
      font-size: 18px;
    }
    .channel-name{
      font-size: 14px;
      font_weight:600;
      margin-top: 10px;
      color: rgb(96,96,96);
    }
    .video-stats{
      font-size: 12px;
      margin-top: 5px;
      color: rgb(96,96,96);
    }
