.wp-youtube-trending .music-list {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wp-youtube-trending .item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #ddd;
}

.wp-youtube-trending .rank {
    font-weight: bold;
    font-size: 16px;
    width: 30px;
    text-align: center;
    color: #555;
}

.wp-youtube-trending .thumb {
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.wp-youtube-trending .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-youtube-trending .details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wp-youtube-trending .title {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

.wp-youtube-trending .artist {
    font-size: 13px;
    color: #666;
}

.wp-youtube-trending .stats {
    font-size: 12px;
    color: #999;
}