/* Local styling inspired by SoundCloudList */
  .rm-yt-page .yt-embed {
    background: #000;
    border: 0;
    width: 100%;
    height: 180px;
    display: block;
  }
  .rm-yt-page .rm-form-row {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
  }
  .rm-yt-page .rm-input {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.14);
    padding: 10px 12px;
    min-width: 200px;
    background: rgba(255,255,255,.95);
  }
  .rm-yt-page .rm-note {
    border: 1px solid rgba(0,0,0,.07);
    background: rgba(0,0,0,.02);
    border-radius: 12px;
    padding: 10px 12px;
  }
  .rm-yt-page .rm-badge {
    display:inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: .75rem;
    color: var(--rm-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-right: 4px;
    margin-bottom: 4px;
  }
  .rm-yt-page .rm-badge:hover, .rm-yt-page .rm-badge.active {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
  }
  .rm-yt-page .yt-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    background: #f8f9fa;
  }
  .rm-yt-page .yt-img-container {
      position: relative;
  }
  .rm-yt-page .yt-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      color: rgba(255,255,255,0.8);
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
      pointer-events: none;
  }
  .rm-yt-page .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .rm-yt-page .truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }